HEX: #6699AA
RGB: (102,153,170)
#6699AA contains mainly green and blue colors. Web safe color of #6699AA is #669999 (or #699).
#6699AA color RGB value is (102,153,170).
RGB: (102,153,170) (40%,60%,67%)
R 102 of 255 = 40%
G 153 of 255 = 60%
B 170 of 255 = 67%
R + G + B ~ 56%. #6699AA is middle color (not dark and not light).
R + G + B =
102 + 153 + 170 = 425 (100%)
R 102 of 425 ~ 24%
G 153 of 425 ~ 36%
B 170 of 425 ~ 40%
#6699AA color CMYK value is (40,10,0,33).
CMYK: (40,10,0,33) C40M10Y0K33 (40%,10%,0%,33%) (0.40/0.10/0.00/0.33)
66 | 99 | AA | |
---|---|---|---|
RGB | 102 | 153 | 170 |
HSL | 195° | 28.57% | 53.33% |
HSB/HSV | 195° | 40.00% | 66.67% |
CMYK | 40.00% | 10.00% | 0.00% |
33.33% |
HEX | 66 | 99 | AA |
Decimal | 102 | 153 | 170 |
Binary | 1100110 | 10011001 | 10101010 |
Octal | 146 | 231 | 252 |
Examples of css and html codes for elements with #6699AA color. Also use rgb(102,153,170) instead hex code.
.myTextColor { color: #6699AA; }
<p style="color:#6699AA">This sample text font color is #6699AA.</p>
This text font color is #6699AA.
.myBgColor { background-color: #6699AA; }
<div style="background-color:#6699AA">Inner text</div>
This div background color is #6699AA.
.myBorderColor { border: 1px solid #6699AA; }
<div style="border:3px solid #6699AA">Div</div>
This div border color is #6699AA.
.myOpacity80 { color: #6699AA; opacity: 0.8; }
<p style="color:#6699AA;opacity:0.8;">80%</p>
Text with #6699AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6699AA;}
<p style="text-shadow: 3px 3px 1px #6699AA">Text here.</p>
This text has shadow with #6699AA color.
.textShadow {text-shadow: 3px 3px 1px #6699AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6699AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #6699AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6699AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6699AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #6699AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6699AA; -webkit-box-shadow: 1px 1px 3px 2px #6699AA; box-shadow: 1px 1px 3px 2px #6699AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6699AA; -webkit-box-shadow: 1px 1px 3px 2px #6699AA; box-shadow:1px 1px 3px 2px #6699AA;">
Div content here</div>
This text has color #6699AA on black background.
This text has color #6699AA on white background.
This text has black color on #6699AA background.
This text has white color on #6699AA background.