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