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