HEX: #66FFCC
RGB: (102,255,204)
#66FFCC contains mainly green and blue colors. #66FFCC color is web safe color. It maybe written shortly as #6FC.
#66FFCC color RGB value is (102,255,204).
RGB: (102,255,204) (40%,100%,80%)
R 102 of 255 = 40%
G 255 of 255 = 100%
B 204 of 255 = 80%
R + G + B ~ 73%. #66FFCC is quite light color.
R + G + B =
102 + 255 + 204 = 561 (100%)
R 102 of 561 ~ 18.18%
G 255 of 561 ~ 45.45%
B 204 of 561 ~ 36.36%
#66FFCC color CMYK value is (60,0,20,0).
CMYK: (60,0,20,0) C60M0Y20K0 (60%,0%,20%,0%) (0.60/0.00/0.20/0.00)
66 | FF | CC | |
---|---|---|---|
RGB | 102 | 255 | 204 |
HSL | 160° | 100.00% | 70.00% |
HSB/HSV | 160° | 60.00% | 100.00% |
CMYK | 60.00% | 0.00% | 20.00% |
0.00% |
HEX | 66 | FF | CC |
Decimal | 102 | 255 | 204 |
Binary | 1100110 | 11111111 | 11001100 |
Octal | 146 | 377 | 314 |
Examples of css and html codes for elements with #66FFCC color. Also use rgb(102,255,204) instead hex code.
.myTextColor { color: #66FFCC; }
<p style="color:#66FFCC">This sample text font color is #66FFCC.</p>
This text font color is #66FFCC.
.myBgColor { background-color: #66FFCC; }
<div style="background-color:#66FFCC">Inner text</div>
This div background color is #66FFCC.
.myBorderColor { border: 1px solid #66FFCC; }
<div style="border:3px solid #66FFCC">Div</div>
This div border color is #66FFCC.
.myOpacity80 { color: #66FFCC; opacity: 0.8; }
<p style="color:#66FFCC;opacity:0.8;">80%</p>
Text with #66FFCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #66FFCC;}
<p style="text-shadow: 3px 3px 1px #66FFCC">Text here.</p>
This text has shadow with #66FFCC color.
.textShadow {text-shadow: 3px 3px 1px #66FFCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #66FFCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #66FFCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#66FFCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#66FFCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #66FFCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #66FFCC; -webkit-box-shadow: 1px 1px 3px 2px #66FFCC; box-shadow: 1px 1px 3px 2px #66FFCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #66FFCC; -webkit-box-shadow: 1px 1px 3px 2px #66FFCC; box-shadow:1px 1px 3px 2px #66FFCC;">
Div content here</div>
This text has color #66FFCC on black background.
This text has color #66FFCC on white background.
This text has black color on #66FFCC background.
This text has white color on #66FFCC background.