HEX: #CCE8EB
RGB: (204,232,235)
#CCE8EB contains red, green and blue colors in about the same proportion. Web safe color of #CCE8EB is #CCFFFF (or #CFF).
#CCE8EB color RGB value is (204,232,235).
RGB: (204,232,235) (80%,91%,92%)
R 204 of 255 = 80%
G 232 of 255 = 91%
B 235 of 255 = 92%
R + G + B ~ 88%. #CCE8EB is light color.
R + G + B =
204 + 232 + 235 = 671 (100%)
R 204 of 671 ~ 30.4%
G 232 of 671 ~ 34.58%
B 235 of 671 ~ 35.02%
#CCE8EB color CMYK value is (13,1,0,8).
CMYK: (13,1,0,8) C13M1Y0K8 (13%,1%,0%,8%) (0.13/0.01/0.00/0.08)
CC | E8 | EB | |
---|---|---|---|
RGB | 204 | 232 | 235 |
HSL | 186° | 43.66% | 86.08% |
HSB/HSV | 186° | 13.19% | 92.16% |
CMYK | 13.19% | 1.28% | 0.00% |
7.84% |
HEX | CC | E8 | EB |
Decimal | 204 | 232 | 235 |
Binary | 11001100 | 11101000 | 11101011 |
Octal | 314 | 350 | 353 |
Examples of css and html codes for elements with #CCE8EB color. Also use rgb(204,232,235) instead hex code.
.myTextColor { color: #CCE8EB; }
<p style="color:#CCE8EB">This sample text font color is #CCE8EB.</p>
This text font color is #CCE8EB.
.myBgColor { background-color: #CCE8EB; }
<div style="background-color:#CCE8EB">Inner text</div>
This div background color is #CCE8EB.
.myBorderColor { border: 1px solid #CCE8EB; }
<div style="border:3px solid #CCE8EB">Div</div>
This div border color is #CCE8EB.
.myOpacity80 { color: #CCE8EB; opacity: 0.8; }
<p style="color:#CCE8EB;opacity:0.8;">80%</p>
Text with #CCE8EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCE8EB;}
<p style="text-shadow: 3px 3px 1px #CCE8EB">Text here.</p>
This text has shadow with #CCE8EB color.
.textShadow {text-shadow: 3px 3px 1px #CCE8EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCE8EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCE8EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCE8EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCE8EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCE8EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCE8EB; -webkit-box-shadow: 1px 1px 3px 2px #CCE8EB; box-shadow: 1px 1px 3px 2px #CCE8EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCE8EB; -webkit-box-shadow: 1px 1px 3px 2px #CCE8EB; box-shadow:1px 1px 3px 2px #CCE8EB;">
Div content here</div>
This text has color #CCE8EB on black background.
This text has color #CCE8EB on white background.
This text has black color on #CCE8EB background.
This text has white color on #CCE8EB background.