HEX: #E0DBFB
RGB: (224,219,251)
#E0DBFB contains red, green and blue colors in about the same proportion. Web safe color of #E0DBFB is #CCCCFF (or #CCF).
#E0DBFB color RGB value is (224,219,251).
RGB: (224,219,251) (88%,86%,98%)
R 224 of 255 = 88%
G 219 of 255 = 86%
B 251 of 255 = 98%
R + G + B ~ 91%. #E0DBFB is light color.
R + G + B =
224 + 219 + 251 = 694 (100%)
R 224 of 694 ~ 32.28%
G 219 of 694 ~ 31.56%
B 251 of 694 ~ 36.17%
#E0DBFB color CMYK value is (11,13,0,2).
CMYK: (11,13,0,2) C11M13Y0K2 (11%,13%,0%,2%) (0.11/0.13/0.00/0.02)
E0 | DB | FB | |
---|---|---|---|
RGB | 224 | 219 | 251 |
HSL | 249° | 80.00% | 92.16% |
HSB/HSV | 249° | 12.75% | 98.43% |
CMYK | 10.76% | 12.75% | 0.00% |
1.57% |
HEX | E0 | DB | FB |
Decimal | 224 | 219 | 251 |
Binary | 11100000 | 11011011 | 11111011 |
Octal | 340 | 333 | 373 |
Examples of css and html codes for elements with #E0DBFB color. Also use rgb(224,219,251) instead hex code.
.myTextColor { color: #E0DBFB; }
<p style="color:#E0DBFB">This sample text font color is #E0DBFB.</p>
This text font color is #E0DBFB.
.myBgColor { background-color: #E0DBFB; }
<div style="background-color:#E0DBFB">Inner text</div>
This div background color is #E0DBFB.
.myBorderColor { border: 1px solid #E0DBFB; }
<div style="border:3px solid #E0DBFB">Div</div>
This div border color is #E0DBFB.
.myOpacity80 { color: #E0DBFB; opacity: 0.8; }
<p style="color:#E0DBFB;opacity:0.8;">80%</p>
Text with #E0DBFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0DBFB;}
<p style="text-shadow: 3px 3px 1px #E0DBFB">Text here.</p>
This text has shadow with #E0DBFB color.
.textShadow {text-shadow: 3px 3px 1px #E0DBFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0DBFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0DBFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0DBFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0DBFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0DBFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0DBFB; -webkit-box-shadow: 1px 1px 3px 2px #E0DBFB; box-shadow: 1px 1px 3px 2px #E0DBFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0DBFB; -webkit-box-shadow: 1px 1px 3px 2px #E0DBFB; box-shadow:1px 1px 3px 2px #E0DBFB;">
Div content here</div>
This text has color #E0DBFB on black background.
This text has color #E0DBFB on white background.
This text has black color on #E0DBFB background.
This text has white color on #E0DBFB background.