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