HEX: #DDE4DC
RGB: (221,228,220)
#DDE4DC contains red, green and blue colors in about the same proportion. Web safe color of #DDE4DC is #CCCCCC (or #CCC).
#DDE4DC color RGB value is (221,228,220).
RGB: (221,228,220) (87%,89%,86%)
R 221 of 255 = 87%
G 228 of 255 = 89%
B 220 of 255 = 86%
R + G + B ~ 87%. #DDE4DC is light color.
R + G + B =
221 + 228 + 220 = 669 (100%)
R 221 of 669 ~ 33.03%
G 228 of 669 ~ 34.08%
B 220 of 669 ~ 32.88%
#DDE4DC color CMYK value is (3,0,4,11).
CMYK: (3,0,4,11) C3M0Y4K11 (3%,0%,4%,11%) (0.03/0.00/0.04/0.11)
DD | E4 | DC | |
---|---|---|---|
RGB | 221 | 228 | 220 |
HSL | 113° | 12.90% | 87.84% |
HSB/HSV | 113° | 3.51% | 89.41% |
CMYK | 3.07% | 0.00% | 3.51% |
10.59% |
HEX | DD | E4 | DC |
Decimal | 221 | 228 | 220 |
Binary | 11011101 | 11100100 | 11011100 |
Octal | 335 | 344 | 334 |
Examples of css and html codes for elements with #DDE4DC color. Also use rgb(221,228,220) instead hex code.
.myTextColor { color: #DDE4DC; }
<p style="color:#DDE4DC">This sample text font color is #DDE4DC.</p>
This text font color is #DDE4DC.
.myBgColor { background-color: #DDE4DC; }
<div style="background-color:#DDE4DC">Inner text</div>
This div background color is #DDE4DC.
.myBorderColor { border: 1px solid #DDE4DC; }
<div style="border:3px solid #DDE4DC">Div</div>
This div border color is #DDE4DC.
.myOpacity80 { color: #DDE4DC; opacity: 0.8; }
<p style="color:#DDE4DC;opacity:0.8;">80%</p>
Text with #DDE4DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDE4DC;}
<p style="text-shadow: 3px 3px 1px #DDE4DC">Text here.</p>
This text has shadow with #DDE4DC color.
.textShadow {text-shadow: 3px 3px 1px #DDE4DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDE4DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDE4DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDE4DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDE4DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDE4DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDE4DC; -webkit-box-shadow: 1px 1px 3px 2px #DDE4DC; box-shadow: 1px 1px 3px 2px #DDE4DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDE4DC; -webkit-box-shadow: 1px 1px 3px 2px #DDE4DC; box-shadow:1px 1px 3px 2px #DDE4DC;">
Div content here</div>
This text has color #DDE4DC on black background.
This text has color #DDE4DC on white background.
This text has black color on #DDE4DC background.
This text has white color on #DDE4DC background.