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