HEX: #DFE5DD
RGB: (223,229,221)
#DFE5DD contains red, green and blue colors in about the same proportion. Web safe color of #DFE5DD is #CCCCCC (or #CCC).
#DFE5DD color RGB value is (223,229,221).
RGB: (223,229,221) (87%,90%,87%)
R 223 of 255 = 87%
G 229 of 255 = 90%
B 221 of 255 = 87%
R + G + B ~ 88%. #DFE5DD is light color.
R + G + B =
223 + 229 + 221 = 673 (100%)
R 223 of 673 ~ 33.14%
G 229 of 673 ~ 34.03%
B 221 of 673 ~ 32.84%
#DFE5DD color CMYK value is (3,0,3,10).
CMYK: (3,0,3,10) C3M0Y3K10 (3%,0%,3%,10%) (0.03/0.00/0.03/0.10)
DF | E5 | DD | |
---|---|---|---|
RGB | 223 | 229 | 221 |
HSL | 105° | 13.33% | 88.24% |
HSB/HSV | 105° | 3.49% | 89.80% |
CMYK | 2.62% | 0.00% | 3.49% |
10.20% |
HEX | DF | E5 | DD |
Decimal | 223 | 229 | 221 |
Binary | 11011111 | 11100101 | 11011101 |
Octal | 337 | 345 | 335 |
Examples of css and html codes for elements with #DFE5DD color. Also use rgb(223,229,221) instead hex code.
.myTextColor { color: #DFE5DD; }
<p style="color:#DFE5DD">This sample text font color is #DFE5DD.</p>
This text font color is #DFE5DD.
.myBgColor { background-color: #DFE5DD; }
<div style="background-color:#DFE5DD">Inner text</div>
This div background color is #DFE5DD.
.myBorderColor { border: 1px solid #DFE5DD; }
<div style="border:3px solid #DFE5DD">Div</div>
This div border color is #DFE5DD.
.myOpacity80 { color: #DFE5DD; opacity: 0.8; }
<p style="color:#DFE5DD;opacity:0.8;">80%</p>
Text with #DFE5DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DFE5DD;}
<p style="text-shadow: 3px 3px 1px #DFE5DD">Text here.</p>
This text has shadow with #DFE5DD color.
.textShadow {text-shadow: 3px 3px 1px #DFE5DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DFE5DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #DFE5DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DFE5DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DFE5DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #DFE5DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DFE5DD; -webkit-box-shadow: 1px 1px 3px 2px #DFE5DD; box-shadow: 1px 1px 3px 2px #DFE5DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DFE5DD; -webkit-box-shadow: 1px 1px 3px 2px #DFE5DD; box-shadow:1px 1px 3px 2px #DFE5DD;">
Div content here</div>
This text has color #DFE5DD on black background.
This text has color #DFE5DD on white background.
This text has black color on #DFE5DD background.
This text has white color on #DFE5DD background.