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