HEX: #E9DCEE
RGB: (233,220,238)
#E9DCEE contains red, green and blue colors in about the same proportion. Web safe color of #E9DCEE is #FFCCFF (or #FCF).
#E9DCEE color RGB value is (233,220,238).
RGB: (233,220,238) (91%,86%,93%)
R 233 of 255 = 91%
G 220 of 255 = 86%
B 238 of 255 = 93%
R + G + B ~ 90%. #E9DCEE is light color.
R + G + B =
233 + 220 + 238 = 691 (100%)
R 233 of 691 ~ 33.72%
G 220 of 691 ~ 31.84%
B 238 of 691 ~ 34.44%
#E9DCEE color CMYK value is (2,8,0,7).
CMYK: (2,8,0,7) C2M8Y0K7 (2%,8%,0%,7%) (0.02/0.08/0.00/0.07)
E9 | DC | EE | |
---|---|---|---|
RGB | 233 | 220 | 238 |
HSL | 283° | 34.62% | 89.80% |
HSB/HSV | 283° | 7.56% | 93.33% |
CMYK | 2.10% | 7.56% | 0.00% |
6.67% |
HEX | E9 | DC | EE |
Decimal | 233 | 220 | 238 |
Binary | 11101001 | 11011100 | 11101110 |
Octal | 351 | 334 | 356 |
Examples of css and html codes for elements with #E9DCEE color. Also use rgb(233,220,238) instead hex code.
.myTextColor { color: #E9DCEE; }
<p style="color:#E9DCEE">This sample text font color is #E9DCEE.</p>
This text font color is #E9DCEE.
.myBgColor { background-color: #E9DCEE; }
<div style="background-color:#E9DCEE">Inner text</div>
This div background color is #E9DCEE.
.myBorderColor { border: 1px solid #E9DCEE; }
<div style="border:3px solid #E9DCEE">Div</div>
This div border color is #E9DCEE.
.myOpacity80 { color: #E9DCEE; opacity: 0.8; }
<p style="color:#E9DCEE;opacity:0.8;">80%</p>
Text with #E9DCEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9DCEE;}
<p style="text-shadow: 3px 3px 1px #E9DCEE">Text here.</p>
This text has shadow with #E9DCEE color.
.textShadow {text-shadow: 3px 3px 1px #E9DCEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9DCEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9DCEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9DCEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9DCEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9DCEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9DCEE; -webkit-box-shadow: 1px 1px 3px 2px #E9DCEE; box-shadow: 1px 1px 3px 2px #E9DCEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9DCEE; -webkit-box-shadow: 1px 1px 3px 2px #E9DCEE; box-shadow:1px 1px 3px 2px #E9DCEE;">
Div content here</div>
This text has color #E9DCEE on black background.
This text has color #E9DCEE on white background.
This text has black color on #E9DCEE background.
This text has white color on #E9DCEE background.