HEX: #E1DDEA
RGB: (225,221,234)
#E1DDEA contains red, green and blue colors in about the same proportion. Web safe color of #E1DDEA is #CCCCFF (or #CCF).
#E1DDEA color RGB value is (225,221,234).
RGB: (225,221,234) (88%,87%,92%)
R 225 of 255 = 88%
G 221 of 255 = 87%
B 234 of 255 = 92%
R + G + B ~ 89%. #E1DDEA is light color.
R + G + B =
225 + 221 + 234 = 680 (100%)
R 225 of 680 ~ 33.09%
G 221 of 680 ~ 32.5%
B 234 of 680 ~ 34.41%
#E1DDEA color CMYK value is (4,6,0,8).
CMYK: (4,6,0,8) C4M6Y0K8 (4%,6%,0%,8%) (0.04/0.06/0.00/0.08)
E1 | DD | EA | |
---|---|---|---|
RGB | 225 | 221 | 234 |
HSL | 258° | 23.64% | 89.22% |
HSB/HSV | 258° | 5.56% | 91.76% |
CMYK | 3.85% | 5.56% | 0.00% |
8.24% |
HEX | E1 | DD | EA |
Decimal | 225 | 221 | 234 |
Binary | 11100001 | 11011101 | 11101010 |
Octal | 341 | 335 | 352 |
Examples of css and html codes for elements with #E1DDEA color. Also use rgb(225,221,234) instead hex code.
.myTextColor { color: #E1DDEA; }
<p style="color:#E1DDEA">This sample text font color is #E1DDEA.</p>
This text font color is #E1DDEA.
.myBgColor { background-color: #E1DDEA; }
<div style="background-color:#E1DDEA">Inner text</div>
This div background color is #E1DDEA.
.myBorderColor { border: 1px solid #E1DDEA; }
<div style="border:3px solid #E1DDEA">Div</div>
This div border color is #E1DDEA.
.myOpacity80 { color: #E1DDEA; opacity: 0.8; }
<p style="color:#E1DDEA;opacity:0.8;">80%</p>
Text with #E1DDEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1DDEA;}
<p style="text-shadow: 3px 3px 1px #E1DDEA">Text here.</p>
This text has shadow with #E1DDEA color.
.textShadow {text-shadow: 3px 3px 1px #E1DDEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1DDEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1DDEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1DDEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1DDEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1DDEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1DDEA; -webkit-box-shadow: 1px 1px 3px 2px #E1DDEA; box-shadow: 1px 1px 3px 2px #E1DDEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1DDEA; -webkit-box-shadow: 1px 1px 3px 2px #E1DDEA; box-shadow:1px 1px 3px 2px #E1DDEA;">
Div content here</div>
This text has color #E1DDEA on black background.
This text has color #E1DDEA on white background.
This text has black color on #E1DDEA background.
This text has white color on #E1DDEA background.