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