HEX: #6C7EAB
RGB: (108,126,171)
#6C7EAB contains mainly green and blue colors. Web safe color of #6C7EAB is #666699 (or #669).
#6C7EAB color RGB value is (108,126,171).
RGB: (108,126,171) (42%,49%,67%)
R 108 of 255 = 42%
G 126 of 255 = 49%
B 171 of 255 = 67%
R + G + B ~ 53%. #6C7EAB is middle color (not dark and not light).
R + G + B =
108 + 126 + 171 = 405 (100%)
R 108 of 405 ~ 26.67%
G 126 of 405 ~ 31.11%
B 171 of 405 ~ 42.22%
#6C7EAB color CMYK value is (37,26,0,33).
CMYK: (37,26,0,33) C37M26Y0K33 (37%,26%,0%,33%) (0.37/0.26/0.00/0.33)
6C | 7E | AB | |
---|---|---|---|
RGB | 108 | 126 | 171 |
HSL | 223° | 27.27% | 54.71% |
HSB/HSV | 223° | 36.84% | 67.06% |
CMYK | 36.84% | 26.32% | 0.00% |
32.94% |
HEX | 6C | 7E | AB |
Decimal | 108 | 126 | 171 |
Binary | 1101100 | 1111110 | 10101011 |
Octal | 154 | 176 | 253 |
Examples of css and html codes for elements with #6C7EAB color. Also use rgb(108,126,171) instead hex code.
.myTextColor { color: #6C7EAB; }
<p style="color:#6C7EAB">This sample text font color is #6C7EAB.</p>
This text font color is #6C7EAB.
.myBgColor { background-color: #6C7EAB; }
<div style="background-color:#6C7EAB">Inner text</div>
This div background color is #6C7EAB.
.myBorderColor { border: 1px solid #6C7EAB; }
<div style="border:3px solid #6C7EAB">Div</div>
This div border color is #6C7EAB.
.myOpacity80 { color: #6C7EAB; opacity: 0.8; }
<p style="color:#6C7EAB;opacity:0.8;">80%</p>
Text with #6C7EAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C7EAB;}
<p style="text-shadow: 3px 3px 1px #6C7EAB">Text here.</p>
This text has shadow with #6C7EAB color.
.textShadow {text-shadow: 3px 3px 1px #6C7EAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C7EAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C7EAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C7EAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C7EAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C7EAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C7EAB; -webkit-box-shadow: 1px 1px 3px 2px #6C7EAB; box-shadow: 1px 1px 3px 2px #6C7EAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C7EAB; -webkit-box-shadow: 1px 1px 3px 2px #6C7EAB; box-shadow:1px 1px 3px 2px #6C7EAB;">
Div content here</div>
This text has color #6C7EAB on black background.
This text has color #6C7EAB on white background.
This text has black color on #6C7EAB background.
This text has white color on #6C7EAB background.