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