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