HEX: #E0DBEF
RGB: (224,219,239)
#E0DBEF contains red, green and blue colors in about the same proportion. Web safe color of #E0DBEF is #CCCCFF (or #CCF).
#E0DBEF color RGB value is (224,219,239).
RGB: (224,219,239) (88%,86%,94%)
R 224 of 255 = 88%
G 219 of 255 = 86%
B 239 of 255 = 94%
R + G + B ~ 89%. #E0DBEF is light color.
R + G + B =
224 + 219 + 239 = 682 (100%)
R 224 of 682 ~ 32.84%
G 219 of 682 ~ 32.11%
B 239 of 682 ~ 35.04%
#E0DBEF color CMYK value is (6,8,0,6).
CMYK: (6,8,0,6) C6M8Y0K6 (6%,8%,0%,6%) (0.06/0.08/0.00/0.06)
E0 | DB | EF | |
---|---|---|---|
RGB | 224 | 219 | 239 |
HSL | 255° | 38.46% | 89.80% |
HSB/HSV | 255° | 8.37% | 93.73% |
CMYK | 6.28% | 8.37% | 0.00% |
6.27% |
HEX | E0 | DB | EF |
Decimal | 224 | 219 | 239 |
Binary | 11100000 | 11011011 | 11101111 |
Octal | 340 | 333 | 357 |
Examples of css and html codes for elements with #E0DBEF color. Also use rgb(224,219,239) instead hex code.
.myTextColor { color: #E0DBEF; }
<p style="color:#E0DBEF">This sample text font color is #E0DBEF.</p>
This text font color is #E0DBEF.
.myBgColor { background-color: #E0DBEF; }
<div style="background-color:#E0DBEF">Inner text</div>
This div background color is #E0DBEF.
.myBorderColor { border: 1px solid #E0DBEF; }
<div style="border:3px solid #E0DBEF">Div</div>
This div border color is #E0DBEF.
.myOpacity80 { color: #E0DBEF; opacity: 0.8; }
<p style="color:#E0DBEF;opacity:0.8;">80%</p>
Text with #E0DBEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0DBEF;}
<p style="text-shadow: 3px 3px 1px #E0DBEF">Text here.</p>
This text has shadow with #E0DBEF color.
.textShadow {text-shadow: 3px 3px 1px #E0DBEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0DBEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0DBEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0DBEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0DBEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0DBEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0DBEF; -webkit-box-shadow: 1px 1px 3px 2px #E0DBEF; box-shadow: 1px 1px 3px 2px #E0DBEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0DBEF; -webkit-box-shadow: 1px 1px 3px 2px #E0DBEF; box-shadow:1px 1px 3px 2px #E0DBEF;">
Div content here</div>
This text has color #E0DBEF on black background.
This text has color #E0DBEF on white background.
This text has black color on #E0DBEF background.
This text has white color on #E0DBEF background.