HEX: #668DAD
RGB: (102,141,173)
#668DAD contains mainly green and blue colors. Web safe color of #668DAD is #669999 (or #699).
#668DAD color RGB value is (102,141,173).
RGB: (102,141,173) (40%,55%,68%)
R 102 of 255 = 40%
G 141 of 255 = 55%
B 173 of 255 = 68%
R + G + B ~ 54%. #668DAD is middle color (not dark and not light).
R + G + B =
102 + 141 + 173 = 416 (100%)
R 102 of 416 ~ 24.52%
G 141 of 416 ~ 33.89%
B 173 of 416 ~ 41.59%
#668DAD color CMYK value is (41,18,0,32).
CMYK: (41,18,0,32) C41M18Y0K32 (41%,18%,0%,32%) (0.41/0.18/0.00/0.32)
66 | 8D | AD | |
---|---|---|---|
RGB | 102 | 141 | 173 |
HSL | 207° | 30.21% | 53.92% |
HSB/HSV | 207° | 41.04% | 67.84% |
CMYK | 41.04% | 18.50% | 0.00% |
32.16% |
HEX | 66 | 8D | AD |
Decimal | 102 | 141 | 173 |
Binary | 1100110 | 10001101 | 10101101 |
Octal | 146 | 215 | 255 |
Examples of css and html codes for elements with #668DAD color. Also use rgb(102,141,173) instead hex code.
.myTextColor { color: #668DAD; }
<p style="color:#668DAD">This sample text font color is #668DAD.</p>
This text font color is #668DAD.
.myBgColor { background-color: #668DAD; }
<div style="background-color:#668DAD">Inner text</div>
This div background color is #668DAD.
.myBorderColor { border: 1px solid #668DAD; }
<div style="border:3px solid #668DAD">Div</div>
This div border color is #668DAD.
.myOpacity80 { color: #668DAD; opacity: 0.8; }
<p style="color:#668DAD;opacity:0.8;">80%</p>
Text with #668DAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #668DAD;}
<p style="text-shadow: 3px 3px 1px #668DAD">Text here.</p>
This text has shadow with #668DAD color.
.textShadow {text-shadow: 3px 3px 1px #668DAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #668DAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #668DAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#668DAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#668DAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #668DAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #668DAD; -webkit-box-shadow: 1px 1px 3px 2px #668DAD; box-shadow: 1px 1px 3px 2px #668DAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #668DAD; -webkit-box-shadow: 1px 1px 3px 2px #668DAD; box-shadow:1px 1px 3px 2px #668DAD;">
Div content here</div>
This text has color #668DAD on black background.
This text has color #668DAD on white background.
This text has black color on #668DAD background.
This text has white color on #668DAD background.