HEX: #E9DDEC
RGB: (233,221,236)
#E9DDEC contains red, green and blue colors in about the same proportion. Web safe color of #E9DDEC is #FFCCFF (or #FCF).
#E9DDEC color RGB value is (233,221,236).
RGB: (233,221,236) (91%,87%,93%)
R 233 of 255 = 91%
G 221 of 255 = 87%
B 236 of 255 = 93%
R + G + B ~ 90%. #E9DDEC is light color.
R + G + B =
233 + 221 + 236 = 690 (100%)
R 233 of 690 ~ 33.77%
G 221 of 690 ~ 32.03%
B 236 of 690 ~ 34.2%
#E9DDEC color CMYK value is (1,6,0,7).
CMYK: (1,6,0,7) C1M6Y0K7 (1%,6%,0%,7%) (0.01/0.06/0.00/0.07)
E9 | DD | EC | |
---|---|---|---|
RGB | 233 | 221 | 236 |
HSL | 288° | 28.30% | 89.61% |
HSB/HSV | 288° | 6.36% | 92.55% |
CMYK | 1.27% | 6.36% | 0.00% |
7.45% |
HEX | E9 | DD | EC |
Decimal | 233 | 221 | 236 |
Binary | 11101001 | 11011101 | 11101100 |
Octal | 351 | 335 | 354 |
Examples of css and html codes for elements with #E9DDEC color. Also use rgb(233,221,236) instead hex code.
.myTextColor { color: #E9DDEC; }
<p style="color:#E9DDEC">This sample text font color is #E9DDEC.</p>
This text font color is #E9DDEC.
.myBgColor { background-color: #E9DDEC; }
<div style="background-color:#E9DDEC">Inner text</div>
This div background color is #E9DDEC.
.myBorderColor { border: 1px solid #E9DDEC; }
<div style="border:3px solid #E9DDEC">Div</div>
This div border color is #E9DDEC.
.myOpacity80 { color: #E9DDEC; opacity: 0.8; }
<p style="color:#E9DDEC;opacity:0.8;">80%</p>
Text with #E9DDEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9DDEC;}
<p style="text-shadow: 3px 3px 1px #E9DDEC">Text here.</p>
This text has shadow with #E9DDEC color.
.textShadow {text-shadow: 3px 3px 1px #E9DDEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9DDEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9DDEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9DDEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9DDEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9DDEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9DDEC; -webkit-box-shadow: 1px 1px 3px 2px #E9DDEC; box-shadow: 1px 1px 3px 2px #E9DDEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9DDEC; -webkit-box-shadow: 1px 1px 3px 2px #E9DDEC; box-shadow:1px 1px 3px 2px #E9DDEC;">
Div content here</div>
This text has color #E9DDEC on black background.
This text has color #E9DDEC on white background.
This text has black color on #E9DDEC background.
This text has white color on #E9DDEC background.