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