HEX: #6C77CB
RGB: (108,119,203)
#6C77CB contains mainly blue color. Web safe color of #6C77CB is #6666CC (or #66C).
#6C77CB color RGB value is (108,119,203).
RGB: (108,119,203) (42%,47%,80%)
R 108 of 255 = 42%
G 119 of 255 = 47%
B 203 of 255 = 80%
R + G + B ~ 56%. #6C77CB is middle color (not dark and not light).
R + G + B =
108 + 119 + 203 = 430 (100%)
R 108 of 430 ~ 25.12%
G 119 of 430 ~ 27.67%
B 203 of 430 ~ 47.21%
#6C77CB color CMYK value is (47,41,0,20).
CMYK: (47,41,0,20) C47M41Y0K20 (47%,41%,0%,20%) (0.47/0.41/0.00/0.20)
6C | 77 | CB | |
---|---|---|---|
RGB | 108 | 119 | 203 |
HSL | 233° | 47.74% | 60.98% |
HSB/HSV | 233° | 46.80% | 79.61% |
CMYK | 46.80% | 41.38% | 0.00% |
20.39% |
HEX | 6C | 77 | CB |
Decimal | 108 | 119 | 203 |
Binary | 1101100 | 1110111 | 11001011 |
Octal | 154 | 167 | 313 |
Examples of css and html codes for elements with #6C77CB color. Also use rgb(108,119,203) instead hex code.
.myTextColor { color: #6C77CB; }
<p style="color:#6C77CB">This sample text font color is #6C77CB.</p>
This text font color is #6C77CB.
.myBgColor { background-color: #6C77CB; }
<div style="background-color:#6C77CB">Inner text</div>
This div background color is #6C77CB.
.myBorderColor { border: 1px solid #6C77CB; }
<div style="border:3px solid #6C77CB">Div</div>
This div border color is #6C77CB.
.myOpacity80 { color: #6C77CB; opacity: 0.8; }
<p style="color:#6C77CB;opacity:0.8;">80%</p>
Text with #6C77CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C77CB;}
<p style="text-shadow: 3px 3px 1px #6C77CB">Text here.</p>
This text has shadow with #6C77CB color.
.textShadow {text-shadow: 3px 3px 1px #6C77CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C77CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C77CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C77CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C77CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C77CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C77CB; -webkit-box-shadow: 1px 1px 3px 2px #6C77CB; box-shadow: 1px 1px 3px 2px #6C77CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C77CB; -webkit-box-shadow: 1px 1px 3px 2px #6C77CB; box-shadow:1px 1px 3px 2px #6C77CB;">
Div content here</div>
This text has color #6C77CB on black background.
This text has color #6C77CB on white background.
This text has black color on #6C77CB background.
This text has white color on #6C77CB background.