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