HEX: #E5DAEE
RGB: (229,218,238)
#E5DAEE contains red, green and blue colors in about the same proportion. Web safe color of #E5DAEE is #CCCCFF (or #CCF).
#E5DAEE color RGB value is (229,218,238).
RGB: (229,218,238) (90%,85%,93%)
R 229 of 255 = 90%
G 218 of 255 = 85%
B 238 of 255 = 93%
R + G + B ~ 89%. #E5DAEE is light color.
R + G + B =
229 + 218 + 238 = 685 (100%)
R 229 of 685 ~ 33.43%
G 218 of 685 ~ 31.82%
B 238 of 685 ~ 34.74%
#E5DAEE color CMYK value is (4,8,0,7).
CMYK: (4,8,0,7) C4M8Y0K7 (4%,8%,0%,7%) (0.04/0.08/0.00/0.07)
E5 | DA | EE | |
---|---|---|---|
RGB | 229 | 218 | 238 |
HSL | 273° | 37.04% | 89.41% |
HSB/HSV | 273° | 8.40% | 93.33% |
CMYK | 3.78% | 8.40% | 0.00% |
6.67% |
HEX | E5 | DA | EE |
Decimal | 229 | 218 | 238 |
Binary | 11100101 | 11011010 | 11101110 |
Octal | 345 | 332 | 356 |
Examples of css and html codes for elements with #E5DAEE color. Also use rgb(229,218,238) instead hex code.
.myTextColor { color: #E5DAEE; }
<p style="color:#E5DAEE">This sample text font color is #E5DAEE.</p>
This text font color is #E5DAEE.
.myBgColor { background-color: #E5DAEE; }
<div style="background-color:#E5DAEE">Inner text</div>
This div background color is #E5DAEE.
.myBorderColor { border: 1px solid #E5DAEE; }
<div style="border:3px solid #E5DAEE">Div</div>
This div border color is #E5DAEE.
.myOpacity80 { color: #E5DAEE; opacity: 0.8; }
<p style="color:#E5DAEE;opacity:0.8;">80%</p>
Text with #E5DAEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5DAEE;}
<p style="text-shadow: 3px 3px 1px #E5DAEE">Text here.</p>
This text has shadow with #E5DAEE color.
.textShadow {text-shadow: 3px 3px 1px #E5DAEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5DAEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5DAEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5DAEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5DAEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5DAEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5DAEE; -webkit-box-shadow: 1px 1px 3px 2px #E5DAEE; box-shadow: 1px 1px 3px 2px #E5DAEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5DAEE; -webkit-box-shadow: 1px 1px 3px 2px #E5DAEE; box-shadow:1px 1px 3px 2px #E5DAEE;">
Div content here</div>
This text has color #E5DAEE on black background.
This text has color #E5DAEE on white background.
This text has black color on #E5DAEE background.
This text has white color on #E5DAEE background.