HEX: #667CAF
RGB: (102,124,175)
#667CAF contains mainly green and blue colors. Web safe color of #667CAF is #666699 (or #669).
#667CAF color RGB value is (102,124,175).
RGB: (102,124,175) (40%,49%,69%)
R 102 of 255 = 40%
G 124 of 255 = 49%
B 175 of 255 = 69%
R + G + B ~ 53%. #667CAF is middle color (not dark and not light).
R + G + B =
102 + 124 + 175 = 401 (100%)
R 102 of 401 ~ 25.44%
G 124 of 401 ~ 30.92%
B 175 of 401 ~ 43.64%
#667CAF color CMYK value is (42,29,0,31).
CMYK: (42,29,0,31) C42M29Y0K31 (42%,29%,0%,31%) (0.42/0.29/0.00/0.31)
66 | 7C | AF | |
---|---|---|---|
RGB | 102 | 124 | 175 |
HSL | 222° | 31.33% | 54.31% |
HSB/HSV | 222° | 41.71% | 68.63% |
CMYK | 41.71% | 29.14% | 0.00% |
31.37% |
HEX | 66 | 7C | AF |
Decimal | 102 | 124 | 175 |
Binary | 1100110 | 1111100 | 10101111 |
Octal | 146 | 174 | 257 |
Examples of css and html codes for elements with #667CAF color. Also use rgb(102,124,175) instead hex code.
.myTextColor { color: #667CAF; }
<p style="color:#667CAF">This sample text font color is #667CAF.</p>
This text font color is #667CAF.
.myBgColor { background-color: #667CAF; }
<div style="background-color:#667CAF">Inner text</div>
This div background color is #667CAF.
.myBorderColor { border: 1px solid #667CAF; }
<div style="border:3px solid #667CAF">Div</div>
This div border color is #667CAF.
.myOpacity80 { color: #667CAF; opacity: 0.8; }
<p style="color:#667CAF;opacity:0.8;">80%</p>
Text with #667CAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #667CAF;}
<p style="text-shadow: 3px 3px 1px #667CAF">Text here.</p>
This text has shadow with #667CAF color.
.textShadow {text-shadow: 3px 3px 1px #667CAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #667CAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #667CAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#667CAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#667CAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #667CAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #667CAF; -webkit-box-shadow: 1px 1px 3px 2px #667CAF; box-shadow: 1px 1px 3px 2px #667CAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #667CAF; -webkit-box-shadow: 1px 1px 3px 2px #667CAF; box-shadow:1px 1px 3px 2px #667CAF;">
Div content here</div>
This text has color #667CAF on black background.
This text has color #667CAF on white background.
This text has black color on #667CAF background.
This text has white color on #667CAF background.