HEX: #E9DEFB
RGB: (233,222,251)
#E9DEFB contains red, green and blue colors in about the same proportion. Web safe color of #E9DEFB is #FFCCFF (or #FCF).
#E9DEFB color RGB value is (233,222,251).
RGB: (233,222,251) (91%,87%,98%)
R 233 of 255 = 91%
G 222 of 255 = 87%
B 251 of 255 = 98%
R + G + B ~ 92%. #E9DEFB is light color.
R + G + B =
233 + 222 + 251 = 706 (100%)
R 233 of 706 ~ 33%
G 222 of 706 ~ 31.44%
B 251 of 706 ~ 35.55%
#E9DEFB color CMYK value is (7,12,0,2).
CMYK: (7,12,0,2) C7M12Y0K2 (7%,12%,0%,2%) (0.07/0.12/0.00/0.02)
E9 | DE | FB | |
---|---|---|---|
RGB | 233 | 222 | 251 |
HSL | 263° | 78.38% | 92.75% |
HSB/HSV | 263° | 11.55% | 98.43% |
CMYK | 7.17% | 11.55% | 0.00% |
1.57% |
HEX | E9 | DE | FB |
Decimal | 233 | 222 | 251 |
Binary | 11101001 | 11011110 | 11111011 |
Octal | 351 | 336 | 373 |
Examples of css and html codes for elements with #E9DEFB color. Also use rgb(233,222,251) instead hex code.
.myTextColor { color: #E9DEFB; }
<p style="color:#E9DEFB">This sample text font color is #E9DEFB.</p>
This text font color is #E9DEFB.
.myBgColor { background-color: #E9DEFB; }
<div style="background-color:#E9DEFB">Inner text</div>
This div background color is #E9DEFB.
.myBorderColor { border: 1px solid #E9DEFB; }
<div style="border:3px solid #E9DEFB">Div</div>
This div border color is #E9DEFB.
.myOpacity80 { color: #E9DEFB; opacity: 0.8; }
<p style="color:#E9DEFB;opacity:0.8;">80%</p>
Text with #E9DEFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9DEFB;}
<p style="text-shadow: 3px 3px 1px #E9DEFB">Text here.</p>
This text has shadow with #E9DEFB color.
.textShadow {text-shadow: 3px 3px 1px #E9DEFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9DEFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9DEFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9DEFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9DEFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9DEFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9DEFB; -webkit-box-shadow: 1px 1px 3px 2px #E9DEFB; box-shadow: 1px 1px 3px 2px #E9DEFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9DEFB; -webkit-box-shadow: 1px 1px 3px 2px #E9DEFB; box-shadow:1px 1px 3px 2px #E9DEFB;">
Div content here</div>
This text has color #E9DEFB on black background.
This text has color #E9DEFB on white background.
This text has black color on #E9DEFB background.
This text has white color on #E9DEFB background.