HEX: #DDF9DB
RGB: (221,249,219)
#DDF9DB contains red, green and blue colors in about the same proportion. Web safe color of #DDF9DB is #CCFFCC (or #CFC).
#DDF9DB color RGB value is (221,249,219).
RGB: (221,249,219) (87%,98%,86%)
R 221 of 255 = 87%
G 249 of 255 = 98%
B 219 of 255 = 86%
R + G + B ~ 90%. #DDF9DB is light color.
R + G + B =
221 + 249 + 219 = 689 (100%)
R 221 of 689 ~ 32.08%
G 249 of 689 ~ 36.14%
B 219 of 689 ~ 31.79%
#DDF9DB color CMYK value is (11,0,12,2).
CMYK: (11,0,12,2) C11M0Y12K2 (11%,0%,12%,2%) (0.11/0.00/0.12/0.02)
DD | F9 | DB | |
---|---|---|---|
RGB | 221 | 249 | 219 |
HSL | 116° | 71.43% | 91.76% |
HSB/HSV | 116° | 12.05% | 97.65% |
CMYK | 11.24% | 0.00% | 12.05% |
2.35% |
HEX | DD | F9 | DB |
Decimal | 221 | 249 | 219 |
Binary | 11011101 | 11111001 | 11011011 |
Octal | 335 | 371 | 333 |
Examples of css and html codes for elements with #DDF9DB color. Also use rgb(221,249,219) instead hex code.
.myTextColor { color: #DDF9DB; }
<p style="color:#DDF9DB">This sample text font color is #DDF9DB.</p>
This text font color is #DDF9DB.
.myBgColor { background-color: #DDF9DB; }
<div style="background-color:#DDF9DB">Inner text</div>
This div background color is #DDF9DB.
.myBorderColor { border: 1px solid #DDF9DB; }
<div style="border:3px solid #DDF9DB">Div</div>
This div border color is #DDF9DB.
.myOpacity80 { color: #DDF9DB; opacity: 0.8; }
<p style="color:#DDF9DB;opacity:0.8;">80%</p>
Text with #DDF9DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDF9DB;}
<p style="text-shadow: 3px 3px 1px #DDF9DB">Text here.</p>
This text has shadow with #DDF9DB color.
.textShadow {text-shadow: 3px 3px 1px #DDF9DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDF9DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDF9DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDF9DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDF9DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDF9DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDF9DB; -webkit-box-shadow: 1px 1px 3px 2px #DDF9DB; box-shadow: 1px 1px 3px 2px #DDF9DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDF9DB; -webkit-box-shadow: 1px 1px 3px 2px #DDF9DB; box-shadow:1px 1px 3px 2px #DDF9DB;">
Div content here</div>
This text has color #DDF9DB on black background.
This text has color #DDF9DB on white background.
This text has black color on #DDF9DB background.
This text has white color on #DDF9DB background.