HEX: #CCDEEF
RGB: (204,222,239)
#CCDEEF contains red, green and blue colors in about the same proportion. Web safe color of #CCDEEF is #CCCCFF (or #CCF).
#CCDEEF color RGB value is (204,222,239).
RGB: (204,222,239) (80%,87%,94%)
R 204 of 255 = 80%
G 222 of 255 = 87%
B 239 of 255 = 94%
R + G + B ~ 87%. #CCDEEF is light color.
R + G + B =
204 + 222 + 239 = 665 (100%)
R 204 of 665 ~ 30.68%
G 222 of 665 ~ 33.38%
B 239 of 665 ~ 35.94%
#CCDEEF color CMYK value is (15,7,0,6).
CMYK: (15,7,0,6) C15M7Y0K6 (15%,7%,0%,6%) (0.15/0.07/0.00/0.06)
CC | DE | EF | |
---|---|---|---|
RGB | 204 | 222 | 239 |
HSL | 209° | 52.24% | 86.86% |
HSB/HSV | 209° | 14.64% | 93.73% |
CMYK | 14.64% | 7.11% | 0.00% |
6.27% |
HEX | CC | DE | EF |
Decimal | 204 | 222 | 239 |
Binary | 11001100 | 11011110 | 11101111 |
Octal | 314 | 336 | 357 |
Examples of css and html codes for elements with #CCDEEF color. Also use rgb(204,222,239) instead hex code.
.myTextColor { color: #CCDEEF; }
<p style="color:#CCDEEF">This sample text font color is #CCDEEF.</p>
This text font color is #CCDEEF.
.myBgColor { background-color: #CCDEEF; }
<div style="background-color:#CCDEEF">Inner text</div>
This div background color is #CCDEEF.
.myBorderColor { border: 1px solid #CCDEEF; }
<div style="border:3px solid #CCDEEF">Div</div>
This div border color is #CCDEEF.
.myOpacity80 { color: #CCDEEF; opacity: 0.8; }
<p style="color:#CCDEEF;opacity:0.8;">80%</p>
Text with #CCDEEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCDEEF;}
<p style="text-shadow: 3px 3px 1px #CCDEEF">Text here.</p>
This text has shadow with #CCDEEF color.
.textShadow {text-shadow: 3px 3px 1px #CCDEEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCDEEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCDEEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCDEEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCDEEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCDEEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCDEEF; -webkit-box-shadow: 1px 1px 3px 2px #CCDEEF; box-shadow: 1px 1px 3px 2px #CCDEEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCDEEF; -webkit-box-shadow: 1px 1px 3px 2px #CCDEEF; box-shadow:1px 1px 3px 2px #CCDEEF;">
Div content here</div>
This text has color #CCDEEF on black background.
This text has color #CCDEEF on white background.
This text has black color on #CCDEEF background.
This text has white color on #CCDEEF background.