HEX: #CCEEEA
RGB: (204,238,234)
#CCEEEA contains red, green and blue colors in about the same proportion. Web safe color of #CCEEEA is #CCFFFF (or #CFF).
#CCEEEA color RGB value is (204,238,234).
RGB: (204,238,234) (80%,93%,92%)
R 204 of 255 = 80%
G 238 of 255 = 93%
B 234 of 255 = 92%
R + G + B ~ 88%. #CCEEEA is light color.
R + G + B =
204 + 238 + 234 = 676 (100%)
R 204 of 676 ~ 30.18%
G 238 of 676 ~ 35.21%
B 234 of 676 ~ 34.62%
#CCEEEA color CMYK value is (14,0,2,7).
CMYK: (14,0,2,7) C14M0Y2K7 (14%,0%,2%,7%) (0.14/0.00/0.02/0.07)
CC | EE | EA | |
---|---|---|---|
RGB | 204 | 238 | 234 |
HSL | 173° | 50.00% | 86.67% |
HSB/HSV | 173° | 14.29% | 93.33% |
CMYK | 14.29% | 0.00% | 1.68% |
6.67% |
HEX | CC | EE | EA |
Decimal | 204 | 238 | 234 |
Binary | 11001100 | 11101110 | 11101010 |
Octal | 314 | 356 | 352 |
Examples of css and html codes for elements with #CCEEEA color. Also use rgb(204,238,234) instead hex code.
.myTextColor { color: #CCEEEA; }
<p style="color:#CCEEEA">This sample text font color is #CCEEEA.</p>
This text font color is #CCEEEA.
.myBgColor { background-color: #CCEEEA; }
<div style="background-color:#CCEEEA">Inner text</div>
This div background color is #CCEEEA.
.myBorderColor { border: 1px solid #CCEEEA; }
<div style="border:3px solid #CCEEEA">Div</div>
This div border color is #CCEEEA.
.myOpacity80 { color: #CCEEEA; opacity: 0.8; }
<p style="color:#CCEEEA;opacity:0.8;">80%</p>
Text with #CCEEEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCEEEA;}
<p style="text-shadow: 3px 3px 1px #CCEEEA">Text here.</p>
This text has shadow with #CCEEEA color.
.textShadow {text-shadow: 3px 3px 1px #CCEEEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCEEEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCEEEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCEEEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCEEEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCEEEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCEEEA; -webkit-box-shadow: 1px 1px 3px 2px #CCEEEA; box-shadow: 1px 1px 3px 2px #CCEEEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCEEEA; -webkit-box-shadow: 1px 1px 3px 2px #CCEEEA; box-shadow:1px 1px 3px 2px #CCEEEA;">
Div content here</div>
This text has color #CCEEEA on black background.
This text has color #CCEEEA on white background.
This text has black color on #CCEEEA background.
This text has white color on #CCEEEA background.