HEX: #DEE0DD
RGB: (222,224,221)
#DEE0DD contains red, green and blue colors in about the same proportion. Web safe color of #DEE0DD is #CCCCCC (or #CCC).
#DEE0DD color RGB value is (222,224,221).
RGB: (222,224,221) (87%,88%,87%)
R 222 of 255 = 87%
G 224 of 255 = 88%
B 221 of 255 = 87%
R + G + B ~ 87%. #DEE0DD is light color.
R + G + B =
222 + 224 + 221 = 667 (100%)
R 222 of 667 ~ 33.28%
G 224 of 667 ~ 33.58%
B 221 of 667 ~ 33.13%
#DEE0DD color CMYK value is (1,0,1,12).
CMYK: (1,0,1,12) C1M0Y1K12 (1%,0%,1%,12%) (0.01/0.00/0.01/0.12)
DE | E0 | DD | |
---|---|---|---|
RGB | 222 | 224 | 221 |
HSL | 100° | 4.62% | 87.25% |
HSB/HSV | 100° | 1.34% | 87.84% |
CMYK | 0.89% | 0.00% | 1.34% |
12.16% |
HEX | DE | E0 | DD |
Decimal | 222 | 224 | 221 |
Binary | 11011110 | 11100000 | 11011101 |
Octal | 336 | 340 | 335 |
Examples of css and html codes for elements with #DEE0DD color. Also use rgb(222,224,221) instead hex code.
.myTextColor { color: #DEE0DD; }
<p style="color:#DEE0DD">This sample text font color is #DEE0DD.</p>
This text font color is #DEE0DD.
.myBgColor { background-color: #DEE0DD; }
<div style="background-color:#DEE0DD">Inner text</div>
This div background color is #DEE0DD.
.myBorderColor { border: 1px solid #DEE0DD; }
<div style="border:3px solid #DEE0DD">Div</div>
This div border color is #DEE0DD.
.myOpacity80 { color: #DEE0DD; opacity: 0.8; }
<p style="color:#DEE0DD;opacity:0.8;">80%</p>
Text with #DEE0DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DEE0DD;}
<p style="text-shadow: 3px 3px 1px #DEE0DD">Text here.</p>
This text has shadow with #DEE0DD color.
.textShadow {text-shadow: 3px 3px 1px #DEE0DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DEE0DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #DEE0DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DEE0DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DEE0DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #DEE0DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DEE0DD; -webkit-box-shadow: 1px 1px 3px 2px #DEE0DD; box-shadow: 1px 1px 3px 2px #DEE0DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DEE0DD; -webkit-box-shadow: 1px 1px 3px 2px #DEE0DD; box-shadow:1px 1px 3px 2px #DEE0DD;">
Div content here</div>
This text has color #DEE0DD on black background.
This text has color #DEE0DD on white background.
This text has black color on #DEE0DD background.
This text has white color on #DEE0DD background.