HEX: #D9EECB
RGB: (217,238,203)
#D9EECB contains red, green and blue colors in about the same proportion. Web safe color of #D9EECB is #CCFFCC (or #CFC).
#D9EECB color RGB value is (217,238,203).
RGB: (217,238,203) (85%,93%,80%)
R 217 of 255 = 85%
G 238 of 255 = 93%
B 203 of 255 = 80%
R + G + B ~ 86%. #D9EECB is light color.
R + G + B =
217 + 238 + 203 = 658 (100%)
R 217 of 658 ~ 32.98%
G 238 of 658 ~ 36.17%
B 203 of 658 ~ 30.85%
#D9EECB color CMYK value is (9,0,15,7).
CMYK: (9,0,15,7) C9M0Y15K7 (9%,0%,15%,7%) (0.09/0.00/0.15/0.07)
D9 | EE | CB | |
---|---|---|---|
RGB | 217 | 238 | 203 |
HSL | 96° | 50.72% | 86.47% |
HSB/HSV | 96° | 14.71% | 93.33% |
CMYK | 8.82% | 0.00% | 14.71% |
6.67% |
HEX | D9 | EE | CB |
Decimal | 217 | 238 | 203 |
Binary | 11011001 | 11101110 | 11001011 |
Octal | 331 | 356 | 313 |
Examples of css and html codes for elements with #D9EECB color. Also use rgb(217,238,203) instead hex code.
.myTextColor { color: #D9EECB; }
<p style="color:#D9EECB">This sample text font color is #D9EECB.</p>
This text font color is #D9EECB.
.myBgColor { background-color: #D9EECB; }
<div style="background-color:#D9EECB">Inner text</div>
This div background color is #D9EECB.
.myBorderColor { border: 1px solid #D9EECB; }
<div style="border:3px solid #D9EECB">Div</div>
This div border color is #D9EECB.
.myOpacity80 { color: #D9EECB; opacity: 0.8; }
<p style="color:#D9EECB;opacity:0.8;">80%</p>
Text with #D9EECB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9EECB;}
<p style="text-shadow: 3px 3px 1px #D9EECB">Text here.</p>
This text has shadow with #D9EECB color.
.textShadow {text-shadow: 3px 3px 1px #D9EECB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9EECB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9EECB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9EECB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9EECB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9EECB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9EECB; -webkit-box-shadow: 1px 1px 3px 2px #D9EECB; box-shadow: 1px 1px 3px 2px #D9EECB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9EECB; -webkit-box-shadow: 1px 1px 3px 2px #D9EECB; box-shadow:1px 1px 3px 2px #D9EECB;">
Div content here</div>
This text has color #D9EECB on black background.
This text has color #D9EECB on white background.
This text has black color on #D9EECB background.
This text has white color on #D9EECB background.