HEX: #E0DADD
RGB: (224,218,221)
#E0DADD contains red, green and blue colors in about the same proportion. Web safe color of #E0DADD is #CCCCCC (or #CCC).
#E0DADD color RGB value is (224,218,221).
RGB: (224,218,221) (88%,85%,87%)
R 224 of 255 = 88%
G 218 of 255 = 85%
B 221 of 255 = 87%
R + G + B ~ 87%. #E0DADD is light color.
R + G + B =
224 + 218 + 221 = 663 (100%)
R 224 of 663 ~ 33.79%
G 218 of 663 ~ 32.88%
B 221 of 663 ~ 33.33%
#E0DADD color CMYK value is (0,3,1,12).
CMYK: (0,3,1,12) C0M3Y1K12 (0%,3%,1%,12%) (0.00/0.03/0.01/0.12)
E0 | DA | DD | |
---|---|---|---|
RGB | 224 | 218 | 221 |
HSL | 330° | 8.82% | 86.67% |
HSB/HSV | 330° | 2.68% | 87.84% |
CMYK | 0.00% | 2.68% | 1.34% |
12.16% |
HEX | E0 | DA | DD |
Decimal | 224 | 218 | 221 |
Binary | 11100000 | 11011010 | 11011101 |
Octal | 340 | 332 | 335 |
Examples of css and html codes for elements with #E0DADD color. Also use rgb(224,218,221) instead hex code.
.myTextColor { color: #E0DADD; }
<p style="color:#E0DADD">This sample text font color is #E0DADD.</p>
This text font color is #E0DADD.
.myBgColor { background-color: #E0DADD; }
<div style="background-color:#E0DADD">Inner text</div>
This div background color is #E0DADD.
.myBorderColor { border: 1px solid #E0DADD; }
<div style="border:3px solid #E0DADD">Div</div>
This div border color is #E0DADD.
.myOpacity80 { color: #E0DADD; opacity: 0.8; }
<p style="color:#E0DADD;opacity:0.8;">80%</p>
Text with #E0DADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0DADD;}
<p style="text-shadow: 3px 3px 1px #E0DADD">Text here.</p>
This text has shadow with #E0DADD color.
.textShadow {text-shadow: 3px 3px 1px #E0DADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0DADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0DADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0DADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0DADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0DADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0DADD; -webkit-box-shadow: 1px 1px 3px 2px #E0DADD; box-shadow: 1px 1px 3px 2px #E0DADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0DADD; -webkit-box-shadow: 1px 1px 3px 2px #E0DADD; box-shadow:1px 1px 3px 2px #E0DADD;">
Div content here</div>
This text has color #E0DADD on black background.
This text has color #E0DADD on white background.
This text has black color on #E0DADD background.
This text has white color on #E0DADD background.