HEX: #D6EEDC
RGB: (214,238,220)
#D6EEDC contains red, green and blue colors in about the same proportion. Web safe color of #D6EEDC is #CCFFCC (or #CFC).
#D6EEDC color RGB value is (214,238,220).
RGB: (214,238,220) (84%,93%,86%)
R 214 of 255 = 84%
G 238 of 255 = 93%
B 220 of 255 = 86%
R + G + B ~ 88%. #D6EEDC is light color.
R + G + B =
214 + 238 + 220 = 672 (100%)
R 214 of 672 ~ 31.85%
G 238 of 672 ~ 35.42%
B 220 of 672 ~ 32.74%
#D6EEDC color CMYK value is (10,0,8,7).
CMYK: (10,0,8,7) C10M0Y8K7 (10%,0%,8%,7%) (0.10/0.00/0.08/0.07)
D6 | EE | DC | |
---|---|---|---|
RGB | 214 | 238 | 220 |
HSL | 135° | 41.38% | 88.63% |
HSB/HSV | 135° | 10.08% | 93.33% |
CMYK | 10.08% | 0.00% | 7.56% |
6.67% |
HEX | D6 | EE | DC |
Decimal | 214 | 238 | 220 |
Binary | 11010110 | 11101110 | 11011100 |
Octal | 326 | 356 | 334 |
Examples of css and html codes for elements with #D6EEDC color. Also use rgb(214,238,220) instead hex code.
.myTextColor { color: #D6EEDC; }
<p style="color:#D6EEDC">This sample text font color is #D6EEDC.</p>
This text font color is #D6EEDC.
.myBgColor { background-color: #D6EEDC; }
<div style="background-color:#D6EEDC">Inner text</div>
This div background color is #D6EEDC.
.myBorderColor { border: 1px solid #D6EEDC; }
<div style="border:3px solid #D6EEDC">Div</div>
This div border color is #D6EEDC.
.myOpacity80 { color: #D6EEDC; opacity: 0.8; }
<p style="color:#D6EEDC;opacity:0.8;">80%</p>
Text with #D6EEDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6EEDC;}
<p style="text-shadow: 3px 3px 1px #D6EEDC">Text here.</p>
This text has shadow with #D6EEDC color.
.textShadow {text-shadow: 3px 3px 1px #D6EEDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6EEDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6EEDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6EEDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6EEDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6EEDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6EEDC; -webkit-box-shadow: 1px 1px 3px 2px #D6EEDC; box-shadow: 1px 1px 3px 2px #D6EEDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6EEDC; -webkit-box-shadow: 1px 1px 3px 2px #D6EEDC; box-shadow:1px 1px 3px 2px #D6EEDC;">
Div content here</div>
This text has color #D6EEDC on black background.
This text has color #D6EEDC on white background.
This text has black color on #D6EEDC background.
This text has white color on #D6EEDC background.