HEX: #DEE9DD
RGB: (222,233,221)
#DEE9DD contains red, green and blue colors in about the same proportion. Web safe color of #DEE9DD is #CCFFCC (or #CFC).
#DEE9DD color RGB value is (222,233,221).
RGB: (222,233,221) (87%,91%,87%)
R 222 of 255 = 87%
G 233 of 255 = 91%
B 221 of 255 = 87%
R + G + B ~ 88%. #DEE9DD is light color.
R + G + B =
222 + 233 + 221 = 676 (100%)
R 222 of 676 ~ 32.84%
G 233 of 676 ~ 34.47%
B 221 of 676 ~ 32.69%
#DEE9DD color CMYK value is (5,0,5,9).
CMYK: (5,0,5,9) C5M0Y5K9 (5%,0%,5%,9%) (0.05/0.00/0.05/0.09)
DE | E9 | DD | |
---|---|---|---|
RGB | 222 | 233 | 221 |
HSL | 115° | 21.43% | 89.02% |
HSB/HSV | 115° | 5.15% | 91.37% |
CMYK | 4.72% | 0.00% | 5.15% |
8.63% |
HEX | DE | E9 | DD |
Decimal | 222 | 233 | 221 |
Binary | 11011110 | 11101001 | 11011101 |
Octal | 336 | 351 | 335 |
Examples of css and html codes for elements with #DEE9DD color. Also use rgb(222,233,221) instead hex code.
.myTextColor { color: #DEE9DD; }
<p style="color:#DEE9DD">This sample text font color is #DEE9DD.</p>
This text font color is #DEE9DD.
.myBgColor { background-color: #DEE9DD; }
<div style="background-color:#DEE9DD">Inner text</div>
This div background color is #DEE9DD.
.myBorderColor { border: 1px solid #DEE9DD; }
<div style="border:3px solid #DEE9DD">Div</div>
This div border color is #DEE9DD.
.myOpacity80 { color: #DEE9DD; opacity: 0.8; }
<p style="color:#DEE9DD;opacity:0.8;">80%</p>
Text with #DEE9DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DEE9DD;}
<p style="text-shadow: 3px 3px 1px #DEE9DD">Text here.</p>
This text has shadow with #DEE9DD color.
.textShadow {text-shadow: 3px 3px 1px #DEE9DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DEE9DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #DEE9DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DEE9DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DEE9DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #DEE9DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DEE9DD; -webkit-box-shadow: 1px 1px 3px 2px #DEE9DD; box-shadow: 1px 1px 3px 2px #DEE9DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DEE9DD; -webkit-box-shadow: 1px 1px 3px 2px #DEE9DD; box-shadow:1px 1px 3px 2px #DEE9DD;">
Div content here</div>
This text has color #DEE9DD on black background.
This text has color #DEE9DD on white background.
This text has black color on #DEE9DD background.
This text has white color on #DEE9DD background.