HEX: #D9DDDB
RGB: (217,221,219)
#D9DDDB contains red, green and blue colors in about the same proportion. Web safe color of #D9DDDB is #CCCCCC (or #CCC).
#D9DDDB color RGB value is (217,221,219).
RGB: (217,221,219) (85%,87%,86%)
R 217 of 255 = 85%
G 221 of 255 = 87%
B 219 of 255 = 86%
R + G + B ~ 86%. #D9DDDB is light color.
R + G + B =
217 + 221 + 219 = 657 (100%)
R 217 of 657 ~ 33.03%
G 221 of 657 ~ 33.64%
B 219 of 657 ~ 33.33%
#D9DDDB color CMYK value is (2,0,1,13).
CMYK: (2,0,1,13) C2M0Y1K13 (2%,0%,1%,13%) (0.02/0.00/0.01/0.13)
D9 | DD | DB | |
---|---|---|---|
RGB | 217 | 221 | 219 |
HSL | 150° | 5.56% | 85.88% |
HSB/HSV | 150° | 1.81% | 86.67% |
CMYK | 1.81% | 0.00% | 0.90% |
13.33% |
HEX | D9 | DD | DB |
Decimal | 217 | 221 | 219 |
Binary | 11011001 | 11011101 | 11011011 |
Octal | 331 | 335 | 333 |
Examples of css and html codes for elements with #D9DDDB color. Also use rgb(217,221,219) instead hex code.
.myTextColor { color: #D9DDDB; }
<p style="color:#D9DDDB">This sample text font color is #D9DDDB.</p>
This text font color is #D9DDDB.
.myBgColor { background-color: #D9DDDB; }
<div style="background-color:#D9DDDB">Inner text</div>
This div background color is #D9DDDB.
.myBorderColor { border: 1px solid #D9DDDB; }
<div style="border:3px solid #D9DDDB">Div</div>
This div border color is #D9DDDB.
.myOpacity80 { color: #D9DDDB; opacity: 0.8; }
<p style="color:#D9DDDB;opacity:0.8;">80%</p>
Text with #D9DDDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9DDDB;}
<p style="text-shadow: 3px 3px 1px #D9DDDB">Text here.</p>
This text has shadow with #D9DDDB color.
.textShadow {text-shadow: 3px 3px 1px #D9DDDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9DDDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9DDDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9DDDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9DDDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9DDDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9DDDB; -webkit-box-shadow: 1px 1px 3px 2px #D9DDDB; box-shadow: 1px 1px 3px 2px #D9DDDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9DDDB; -webkit-box-shadow: 1px 1px 3px 2px #D9DDDB; box-shadow:1px 1px 3px 2px #D9DDDB;">
Div content here</div>
This text has color #D9DDDB on black background.
This text has color #D9DDDB on white background.
This text has black color on #D9DDDB background.
This text has white color on #D9DDDB background.