HEX: #CCE9FE
RGB: (204,233,254)
#CCE9FE contains red, green and blue colors in about the same proportion. Web safe color of #CCE9FE is #CCFFFF (or #CFF).
#CCE9FE color RGB value is (204,233,254).
RGB: (204,233,254) (80%,91%,100%)
R 204 of 255 = 80%
G 233 of 255 = 91%
B 254 of 255 = 100%
R + G + B ~ 90%. #CCE9FE is light color.
R + G + B =
204 + 233 + 254 = 691 (100%)
R 204 of 691 ~ 29.52%
G 233 of 691 ~ 33.72%
B 254 of 691 ~ 36.76%
#CCE9FE color CMYK value is (20,8,0,0).
CMYK: (20,8,0,0) C20M8Y0K0 (20%,8%,0%,0%) (0.20/0.08/0.00/0.00)
CC | E9 | FE | |
---|---|---|---|
RGB | 204 | 233 | 254 |
HSL | 205° | 96.15% | 89.80% |
HSB/HSV | 205° | 19.69% | 99.61% |
CMYK | 19.69% | 8.27% | 0.00% |
0.39% |
HEX | CC | E9 | FE |
Decimal | 204 | 233 | 254 |
Binary | 11001100 | 11101001 | 11111110 |
Octal | 314 | 351 | 376 |
Examples of css and html codes for elements with #CCE9FE color. Also use rgb(204,233,254) instead hex code.
.myTextColor { color: #CCE9FE; }
<p style="color:#CCE9FE">This sample text font color is #CCE9FE.</p>
This text font color is #CCE9FE.
.myBgColor { background-color: #CCE9FE; }
<div style="background-color:#CCE9FE">Inner text</div>
This div background color is #CCE9FE.
.myBorderColor { border: 1px solid #CCE9FE; }
<div style="border:3px solid #CCE9FE">Div</div>
This div border color is #CCE9FE.
.myOpacity80 { color: #CCE9FE; opacity: 0.8; }
<p style="color:#CCE9FE;opacity:0.8;">80%</p>
Text with #CCE9FE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCE9FE;}
<p style="text-shadow: 3px 3px 1px #CCE9FE">Text here.</p>
This text has shadow with #CCE9FE color.
.textShadow {text-shadow: 3px 3px 1px #CCE9FE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCE9FE, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCE9FE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCE9FE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCE9FE, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCE9FE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCE9FE; -webkit-box-shadow: 1px 1px 3px 2px #CCE9FE; box-shadow: 1px 1px 3px 2px #CCE9FE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCE9FE; -webkit-box-shadow: 1px 1px 3px 2px #CCE9FE; box-shadow:1px 1px 3px 2px #CCE9FE;">
Div content here</div>
This text has color #CCE9FE on black background.
This text has color #CCE9FE on white background.
This text has black color on #CCE9FE background.
This text has white color on #CCE9FE background.