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