HEX: #E2DADD
RGB: (226,218,221)
#E2DADD contains red, green and blue colors in about the same proportion. Web safe color of #E2DADD is #CCCCCC (or #CCC).
#E2DADD color RGB value is (226,218,221).
RGB: (226,218,221) (89%,85%,87%)
R 226 of 255 = 89%
G 218 of 255 = 85%
B 221 of 255 = 87%
R + G + B ~ 87%. #E2DADD is light color.
R + G + B =
226 + 218 + 221 = 665 (100%)
R 226 of 665 ~ 33.98%
G 218 of 665 ~ 32.78%
B 221 of 665 ~ 33.23%
#E2DADD color CMYK value is (0,4,2,11).
CMYK: (0,4,2,11) C0M4Y2K11 (0%,4%,2%,11%) (0.00/0.04/0.02/0.11)
E2 | DA | DD | |
---|---|---|---|
RGB | 226 | 218 | 221 |
HSL | 338° | 12.12% | 87.06% |
HSB/HSV | 338° | 3.54% | 88.63% |
CMYK | 0.00% | 3.54% | 2.21% |
11.37% |
HEX | E2 | DA | DD |
Decimal | 226 | 218 | 221 |
Binary | 11100010 | 11011010 | 11011101 |
Octal | 342 | 332 | 335 |
Examples of css and html codes for elements with #E2DADD color. Also use rgb(226,218,221) instead hex code.
.myTextColor { color: #E2DADD; }
<p style="color:#E2DADD">This sample text font color is #E2DADD.</p>
This text font color is #E2DADD.
.myBgColor { background-color: #E2DADD; }
<div style="background-color:#E2DADD">Inner text</div>
This div background color is #E2DADD.
.myBorderColor { border: 1px solid #E2DADD; }
<div style="border:3px solid #E2DADD">Div</div>
This div border color is #E2DADD.
.myOpacity80 { color: #E2DADD; opacity: 0.8; }
<p style="color:#E2DADD;opacity:0.8;">80%</p>
Text with #E2DADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2DADD;}
<p style="text-shadow: 3px 3px 1px #E2DADD">Text here.</p>
This text has shadow with #E2DADD color.
.textShadow {text-shadow: 3px 3px 1px #E2DADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2DADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2DADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2DADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2DADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2DADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2DADD; -webkit-box-shadow: 1px 1px 3px 2px #E2DADD; box-shadow: 1px 1px 3px 2px #E2DADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2DADD; -webkit-box-shadow: 1px 1px 3px 2px #E2DADD; box-shadow:1px 1px 3px 2px #E2DADD;">
Div content here</div>
This text has color #E2DADD on black background.
This text has color #E2DADD on white background.
This text has black color on #E2DADD background.
This text has white color on #E2DADD background.