HEX: #E0D6EC
RGB: (224,214,236)
#E0D6EC contains red, green and blue colors in about the same proportion. Web safe color of #E0D6EC is #CCCCFF (or #CCF).
#E0D6EC color RGB value is (224,214,236).
RGB: (224,214,236) (88%,84%,93%)
R 224 of 255 = 88%
G 214 of 255 = 84%
B 236 of 255 = 93%
R + G + B ~ 88%. #E0D6EC is light color.
R + G + B =
224 + 214 + 236 = 674 (100%)
R 224 of 674 ~ 33.23%
G 214 of 674 ~ 31.75%
B 236 of 674 ~ 35.01%
#E0D6EC color CMYK value is (5,9,0,7).
CMYK: (5,9,0,7) C5M9Y0K7 (5%,9%,0%,7%) (0.05/0.09/0.00/0.07)
E0 | D6 | EC | |
---|---|---|---|
RGB | 224 | 214 | 236 |
HSL | 267° | 36.67% | 88.24% |
HSB/HSV | 267° | 9.32% | 92.55% |
CMYK | 5.08% | 9.32% | 0.00% |
7.45% |
HEX | E0 | D6 | EC |
Decimal | 224 | 214 | 236 |
Binary | 11100000 | 11010110 | 11101100 |
Octal | 340 | 326 | 354 |
Examples of css and html codes for elements with #E0D6EC color. Also use rgb(224,214,236) instead hex code.
.myTextColor { color: #E0D6EC; }
<p style="color:#E0D6EC">This sample text font color is #E0D6EC.</p>
This text font color is #E0D6EC.
.myBgColor { background-color: #E0D6EC; }
<div style="background-color:#E0D6EC">Inner text</div>
This div background color is #E0D6EC.
.myBorderColor { border: 1px solid #E0D6EC; }
<div style="border:3px solid #E0D6EC">Div</div>
This div border color is #E0D6EC.
.myOpacity80 { color: #E0D6EC; opacity: 0.8; }
<p style="color:#E0D6EC;opacity:0.8;">80%</p>
Text with #E0D6EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0D6EC;}
<p style="text-shadow: 3px 3px 1px #E0D6EC">Text here.</p>
This text has shadow with #E0D6EC color.
.textShadow {text-shadow: 3px 3px 1px #E0D6EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0D6EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0D6EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0D6EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0D6EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0D6EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0D6EC; -webkit-box-shadow: 1px 1px 3px 2px #E0D6EC; box-shadow: 1px 1px 3px 2px #E0D6EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0D6EC; -webkit-box-shadow: 1px 1px 3px 2px #E0D6EC; box-shadow:1px 1px 3px 2px #E0D6EC;">
Div content here</div>
This text has color #E0D6EC on black background.
This text has color #E0D6EC on white background.
This text has black color on #E0D6EC background.
This text has white color on #E0D6EC background.