HEX: #E1EDDD
RGB: (225,237,221)
#E1EDDD contains red, green and blue colors in about the same proportion. Web safe color of #E1EDDD is #CCFFCC (or #CFC).
#E1EDDD color RGB value is (225,237,221).
RGB: (225,237,221) (88%,93%,87%)
R 225 of 255 = 88%
G 237 of 255 = 93%
B 221 of 255 = 87%
R + G + B ~ 89%. #E1EDDD is light color.
R + G + B =
225 + 237 + 221 = 683 (100%)
R 225 of 683 ~ 32.94%
G 237 of 683 ~ 34.7%
B 221 of 683 ~ 32.36%
#E1EDDD color CMYK value is (5,0,7,7).
CMYK: (5,0,7,7) C5M0Y7K7 (5%,0%,7%,7%) (0.05/0.00/0.07/0.07)
E1 | ED | DD | |
---|---|---|---|
RGB | 225 | 237 | 221 |
HSL | 105° | 30.77% | 89.80% |
HSB/HSV | 105° | 6.75% | 92.94% |
CMYK | 5.06% | 0.00% | 6.75% |
7.06% |
HEX | E1 | ED | DD |
Decimal | 225 | 237 | 221 |
Binary | 11100001 | 11101101 | 11011101 |
Octal | 341 | 355 | 335 |
Examples of css and html codes for elements with #E1EDDD color. Also use rgb(225,237,221) instead hex code.
.myTextColor { color: #E1EDDD; }
<p style="color:#E1EDDD">This sample text font color is #E1EDDD.</p>
This text font color is #E1EDDD.
.myBgColor { background-color: #E1EDDD; }
<div style="background-color:#E1EDDD">Inner text</div>
This div background color is #E1EDDD.
.myBorderColor { border: 1px solid #E1EDDD; }
<div style="border:3px solid #E1EDDD">Div</div>
This div border color is #E1EDDD.
.myOpacity80 { color: #E1EDDD; opacity: 0.8; }
<p style="color:#E1EDDD;opacity:0.8;">80%</p>
Text with #E1EDDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1EDDD;}
<p style="text-shadow: 3px 3px 1px #E1EDDD">Text here.</p>
This text has shadow with #E1EDDD color.
.textShadow {text-shadow: 3px 3px 1px #E1EDDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1EDDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1EDDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1EDDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1EDDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1EDDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1EDDD; -webkit-box-shadow: 1px 1px 3px 2px #E1EDDD; box-shadow: 1px 1px 3px 2px #E1EDDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1EDDD; -webkit-box-shadow: 1px 1px 3px 2px #E1EDDD; box-shadow:1px 1px 3px 2px #E1EDDD;">
Div content here</div>
This text has color #E1EDDD on black background.
This text has color #E1EDDD on white background.
This text has black color on #E1EDDD background.
This text has white color on #E1EDDD background.