HEX: #D6CEEC
RGB: (214,206,236)
#D6CEEC contains red, green and blue colors in about the same proportion. Web safe color of #D6CEEC is #CCCCFF (or #CCF).
#D6CEEC color RGB value is (214,206,236).
RGB: (214,206,236) (84%,81%,93%)
R 214 of 255 = 84%
G 206 of 255 = 81%
B 236 of 255 = 93%
R + G + B ~ 86%. #D6CEEC is light color.
R + G + B =
214 + 206 + 236 = 656 (100%)
R 214 of 656 ~ 32.62%
G 206 of 656 ~ 31.4%
B 236 of 656 ~ 35.98%
#D6CEEC color CMYK value is (9,13,0,7).
CMYK: (9,13,0,7) C9M13Y0K7 (9%,13%,0%,7%) (0.09/0.13/0.00/0.07)
D6 | CE | EC | |
---|---|---|---|
RGB | 214 | 206 | 236 |
HSL | 256° | 44.12% | 86.67% |
HSB/HSV | 256° | 12.71% | 92.55% |
CMYK | 9.32% | 12.71% | 0.00% |
7.45% |
HEX | D6 | CE | EC |
Decimal | 214 | 206 | 236 |
Binary | 11010110 | 11001110 | 11101100 |
Octal | 326 | 316 | 354 |
Examples of css and html codes for elements with #D6CEEC color. Also use rgb(214,206,236) instead hex code.
.myTextColor { color: #D6CEEC; }
<p style="color:#D6CEEC">This sample text font color is #D6CEEC.</p>
This text font color is #D6CEEC.
.myBgColor { background-color: #D6CEEC; }
<div style="background-color:#D6CEEC">Inner text</div>
This div background color is #D6CEEC.
.myBorderColor { border: 1px solid #D6CEEC; }
<div style="border:3px solid #D6CEEC">Div</div>
This div border color is #D6CEEC.
.myOpacity80 { color: #D6CEEC; opacity: 0.8; }
<p style="color:#D6CEEC;opacity:0.8;">80%</p>
Text with #D6CEEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6CEEC;}
<p style="text-shadow: 3px 3px 1px #D6CEEC">Text here.</p>
This text has shadow with #D6CEEC color.
.textShadow {text-shadow: 3px 3px 1px #D6CEEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6CEEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6CEEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6CEEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6CEEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6CEEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6CEEC; -webkit-box-shadow: 1px 1px 3px 2px #D6CEEC; box-shadow: 1px 1px 3px 2px #D6CEEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6CEEC; -webkit-box-shadow: 1px 1px 3px 2px #D6CEEC; box-shadow:1px 1px 3px 2px #D6CEEC;">
Div content here</div>
This text has color #D6CEEC on black background.
This text has color #D6CEEC on white background.
This text has black color on #D6CEEC background.
This text has white color on #D6CEEC background.