HEX: #E0DDEF
RGB: (224,221,239)
#E0DDEF contains red, green and blue colors in about the same proportion. Web safe color of #E0DDEF is #CCCCFF (or #CCF).
#E0DDEF color RGB value is (224,221,239).
RGB: (224,221,239) (88%,87%,94%)
R 224 of 255 = 88%
G 221 of 255 = 87%
B 239 of 255 = 94%
R + G + B ~ 90%. #E0DDEF is light color.
R + G + B =
224 + 221 + 239 = 684 (100%)
R 224 of 684 ~ 32.75%
G 221 of 684 ~ 32.31%
B 239 of 684 ~ 34.94%
#E0DDEF color CMYK value is (6,8,0,6).
CMYK: (6,8,0,6) C6M8Y0K6 (6%,8%,0%,6%) (0.06/0.08/0.00/0.06)
E0 | DD | EF | |
---|---|---|---|
RGB | 224 | 221 | 239 |
HSL | 250° | 36.00% | 90.20% |
HSB/HSV | 250° | 7.53% | 93.73% |
CMYK | 6.28% | 7.53% | 0.00% |
6.27% |
HEX | E0 | DD | EF |
Decimal | 224 | 221 | 239 |
Binary | 11100000 | 11011101 | 11101111 |
Octal | 340 | 335 | 357 |
Examples of css and html codes for elements with #E0DDEF color. Also use rgb(224,221,239) instead hex code.
.myTextColor { color: #E0DDEF; }
<p style="color:#E0DDEF">This sample text font color is #E0DDEF.</p>
This text font color is #E0DDEF.
.myBgColor { background-color: #E0DDEF; }
<div style="background-color:#E0DDEF">Inner text</div>
This div background color is #E0DDEF.
.myBorderColor { border: 1px solid #E0DDEF; }
<div style="border:3px solid #E0DDEF">Div</div>
This div border color is #E0DDEF.
.myOpacity80 { color: #E0DDEF; opacity: 0.8; }
<p style="color:#E0DDEF;opacity:0.8;">80%</p>
Text with #E0DDEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0DDEF;}
<p style="text-shadow: 3px 3px 1px #E0DDEF">Text here.</p>
This text has shadow with #E0DDEF color.
.textShadow {text-shadow: 3px 3px 1px #E0DDEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0DDEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0DDEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0DDEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0DDEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0DDEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0DDEF; -webkit-box-shadow: 1px 1px 3px 2px #E0DDEF; box-shadow: 1px 1px 3px 2px #E0DDEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0DDEF; -webkit-box-shadow: 1px 1px 3px 2px #E0DDEF; box-shadow:1px 1px 3px 2px #E0DDEF;">
Div content here</div>
This text has color #E0DDEF on black background.
This text has color #E0DDEF on white background.
This text has black color on #E0DDEF background.
This text has white color on #E0DDEF background.