HEX: #E5C9DE
RGB: (229,201,222)
#E5C9DE contains red, green and blue colors in about the same proportion. Web safe color of #E5C9DE is #CCCCCC (or #CCC).
#E5C9DE color RGB value is (229,201,222).
RGB: (229,201,222) (90%,79%,87%)
R 229 of 255 = 90%
G 201 of 255 = 79%
B 222 of 255 = 87%
R + G + B ~ 85%. #E5C9DE is quite light color.
R + G + B =
229 + 201 + 222 = 652 (100%)
R 229 of 652 ~ 35.12%
G 201 of 652 ~ 30.83%
B 222 of 652 ~ 34.05%
#E5C9DE color CMYK value is (0,12,3,10).
CMYK: (0,12,3,10) C0M12Y3K10 (0%,12%,3%,10%) (0.00/0.12/0.03/0.10)
E5 | C9 | DE | |
---|---|---|---|
RGB | 229 | 201 | 222 |
HSL | 315° | 35.00% | 84.31% |
HSB/HSV | 315° | 12.23% | 89.80% |
CMYK | 0.00% | 12.23% | 3.06% |
10.20% |
HEX | E5 | C9 | DE |
Decimal | 229 | 201 | 222 |
Binary | 11100101 | 11001001 | 11011110 |
Octal | 345 | 311 | 336 |
Examples of css and html codes for elements with #E5C9DE color. Also use rgb(229,201,222) instead hex code.
.myTextColor { color: #E5C9DE; }
<p style="color:#E5C9DE">This sample text font color is #E5C9DE.</p>
This text font color is #E5C9DE.
.myBgColor { background-color: #E5C9DE; }
<div style="background-color:#E5C9DE">Inner text</div>
This div background color is #E5C9DE.
.myBorderColor { border: 1px solid #E5C9DE; }
<div style="border:3px solid #E5C9DE">Div</div>
This div border color is #E5C9DE.
.myOpacity80 { color: #E5C9DE; opacity: 0.8; }
<p style="color:#E5C9DE;opacity:0.8;">80%</p>
Text with #E5C9DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5C9DE;}
<p style="text-shadow: 3px 3px 1px #E5C9DE">Text here.</p>
This text has shadow with #E5C9DE color.
.textShadow {text-shadow: 3px 3px 1px #E5C9DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5C9DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5C9DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5C9DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5C9DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5C9DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5C9DE; -webkit-box-shadow: 1px 1px 3px 2px #E5C9DE; box-shadow: 1px 1px 3px 2px #E5C9DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5C9DE; -webkit-box-shadow: 1px 1px 3px 2px #E5C9DE; box-shadow:1px 1px 3px 2px #E5C9DE;">
Div content here</div>
This text has color #E5C9DE on black background.
This text has color #E5C9DE on white background.
This text has black color on #E5C9DE background.
This text has white color on #E5C9DE background.