HEX: #E5A3DE
RGB: (229,163,222)
#E5A3DE contains mainly red and blue colors. Web safe color of #E5A3DE is #CC99CC (or #C9C).
#E5A3DE color RGB value is (229,163,222).
RGB: (229,163,222) (90%,64%,87%)
R 229 of 255 = 90%
G 163 of 255 = 64%
B 222 of 255 = 87%
R + G + B ~ 80%. #E5A3DE is quite light color.
R + G + B =
229 + 163 + 222 = 614 (100%)
R 229 of 614 ~ 37.3%
G 163 of 614 ~ 26.55%
B 222 of 614 ~ 36.16%
#E5A3DE color CMYK value is (0,29,3,10).
CMYK: (0,29,3,10) C0M29Y3K10 (0%,29%,3%,10%) (0.00/0.29/0.03/0.10)
E5 | A3 | DE | |
---|---|---|---|
RGB | 229 | 163 | 222 |
HSL | 306° | 55.93% | 76.86% |
HSB/HSV | 306° | 28.82% | 89.80% |
CMYK | 0.00% | 28.82% | 3.06% |
10.20% |
HEX | E5 | A3 | DE |
Decimal | 229 | 163 | 222 |
Binary | 11100101 | 10100011 | 11011110 |
Octal | 345 | 243 | 336 |
Examples of css and html codes for elements with #E5A3DE color. Also use rgb(229,163,222) instead hex code.
.myTextColor { color: #E5A3DE; }
<p style="color:#E5A3DE">This sample text font color is #E5A3DE.</p>
This text font color is #E5A3DE.
.myBgColor { background-color: #E5A3DE; }
<div style="background-color:#E5A3DE">Inner text</div>
This div background color is #E5A3DE.
.myBorderColor { border: 1px solid #E5A3DE; }
<div style="border:3px solid #E5A3DE">Div</div>
This div border color is #E5A3DE.
.myOpacity80 { color: #E5A3DE; opacity: 0.8; }
<p style="color:#E5A3DE;opacity:0.8;">80%</p>
Text with #E5A3DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5A3DE;}
<p style="text-shadow: 3px 3px 1px #E5A3DE">Text here.</p>
This text has shadow with #E5A3DE color.
.textShadow {text-shadow: 3px 3px 1px #E5A3DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5A3DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5A3DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5A3DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5A3DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5A3DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5A3DE; -webkit-box-shadow: 1px 1px 3px 2px #E5A3DE; box-shadow: 1px 1px 3px 2px #E5A3DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5A3DE; -webkit-box-shadow: 1px 1px 3px 2px #E5A3DE; box-shadow:1px 1px 3px 2px #E5A3DE;">
Div content here</div>
This text has color #E5A3DE on black background.
This text has color #E5A3DE on white background.
This text has black color on #E5A3DE background.
This text has white color on #E5A3DE background.