HEX: #E0DBE9
RGB: (224,219,233)
#E0DBE9 contains red, green and blue colors in about the same proportion. Web safe color of #E0DBE9 is #CCCCFF (or #CCF).
#E0DBE9 color RGB value is (224,219,233).
RGB: (224,219,233) (88%,86%,91%)
R 224 of 255 = 88%
G 219 of 255 = 86%
B 233 of 255 = 91%
R + G + B ~ 88%. #E0DBE9 is light color.
R + G + B =
224 + 219 + 233 = 676 (100%)
R 224 of 676 ~ 33.14%
G 219 of 676 ~ 32.4%
B 233 of 676 ~ 34.47%
#E0DBE9 color CMYK value is (4,6,0,9).
CMYK: (4,6,0,9) C4M6Y0K9 (4%,6%,0%,9%) (0.04/0.06/0.00/0.09)
E0 | DB | E9 | |
---|---|---|---|
RGB | 224 | 219 | 233 |
HSL | 261° | 24.14% | 88.63% |
HSB/HSV | 261° | 6.01% | 91.37% |
CMYK | 3.86% | 6.01% | 0.00% |
8.63% |
HEX | E0 | DB | E9 |
Decimal | 224 | 219 | 233 |
Binary | 11100000 | 11011011 | 11101001 |
Octal | 340 | 333 | 351 |
Examples of css and html codes for elements with #E0DBE9 color. Also use rgb(224,219,233) instead hex code.
.myTextColor { color: #E0DBE9; }
<p style="color:#E0DBE9">This sample text font color is #E0DBE9.</p>
This text font color is #E0DBE9.
.myBgColor { background-color: #E0DBE9; }
<div style="background-color:#E0DBE9">Inner text</div>
This div background color is #E0DBE9.
.myBorderColor { border: 1px solid #E0DBE9; }
<div style="border:3px solid #E0DBE9">Div</div>
This div border color is #E0DBE9.
.myOpacity80 { color: #E0DBE9; opacity: 0.8; }
<p style="color:#E0DBE9;opacity:0.8;">80%</p>
Text with #E0DBE9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0DBE9;}
<p style="text-shadow: 3px 3px 1px #E0DBE9">Text here.</p>
This text has shadow with #E0DBE9 color.
.textShadow {text-shadow: 3px 3px 1px #E0DBE9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0DBE9, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0DBE9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0DBE9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0DBE9, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0DBE9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0DBE9; -webkit-box-shadow: 1px 1px 3px 2px #E0DBE9; box-shadow: 1px 1px 3px 2px #E0DBE9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0DBE9; -webkit-box-shadow: 1px 1px 3px 2px #E0DBE9; box-shadow:1px 1px 3px 2px #E0DBE9;">
Div content here</div>
This text has color #E0DBE9 on black background.
This text has color #E0DBE9 on white background.
This text has black color on #E0DBE9 background.
This text has white color on #E0DBE9 background.