HEX: #E4DBDA
RGB: (228,219,218)
#E4DBDA contains red, green and blue colors in about the same proportion. Web safe color of #E4DBDA is #CCCCCC (or #CCC).
#E4DBDA color RGB value is (228,219,218).
RGB: (228,219,218) (89%,86%,85%)
R 228 of 255 = 89%
G 219 of 255 = 86%
B 218 of 255 = 85%
R + G + B ~ 87%. #E4DBDA is light color.
R + G + B =
228 + 219 + 218 = 665 (100%)
R 228 of 665 ~ 34.29%
G 219 of 665 ~ 32.93%
B 218 of 665 ~ 32.78%
#E4DBDA color CMYK value is (0,4,4,11).
CMYK: (0,4,4,11) C0M4Y4K11 (0%,4%,4%,11%) (0.00/0.04/0.04/0.11)
E4 | DB | DA | |
---|---|---|---|
RGB | 228 | 219 | 218 |
HSL | 6° | 15.63% | 87.45% |
HSB/HSV | 6° | 4.39% | 89.41% |
CMYK | 0.00% | 3.95% | 4.39% |
10.59% |
HEX | E4 | DB | DA |
Decimal | 228 | 219 | 218 |
Binary | 11100100 | 11011011 | 11011010 |
Octal | 344 | 333 | 332 |
Examples of css and html codes for elements with #E4DBDA color. Also use rgb(228,219,218) instead hex code.
.myTextColor { color: #E4DBDA; }
<p style="color:#E4DBDA">This sample text font color is #E4DBDA.</p>
This text font color is #E4DBDA.
.myBgColor { background-color: #E4DBDA; }
<div style="background-color:#E4DBDA">Inner text</div>
This div background color is #E4DBDA.
.myBorderColor { border: 1px solid #E4DBDA; }
<div style="border:3px solid #E4DBDA">Div</div>
This div border color is #E4DBDA.
.myOpacity80 { color: #E4DBDA; opacity: 0.8; }
<p style="color:#E4DBDA;opacity:0.8;">80%</p>
Text with #E4DBDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4DBDA;}
<p style="text-shadow: 3px 3px 1px #E4DBDA">Text here.</p>
This text has shadow with #E4DBDA color.
.textShadow {text-shadow: 3px 3px 1px #E4DBDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4DBDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4DBDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4DBDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4DBDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4DBDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4DBDA; -webkit-box-shadow: 1px 1px 3px 2px #E4DBDA; box-shadow: 1px 1px 3px 2px #E4DBDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4DBDA; -webkit-box-shadow: 1px 1px 3px 2px #E4DBDA; box-shadow:1px 1px 3px 2px #E4DBDA;">
Div content here</div>
This text has color #E4DBDA on black background.
This text has color #E4DBDA on white background.
This text has black color on #E4DBDA background.
This text has white color on #E4DBDA background.