HEX: #E5A5DC
RGB: (229,165,220)
#E5A5DC contains mainly red and blue colors. Web safe color of #E5A5DC is #CC99CC (or #C9C).
#E5A5DC color RGB value is (229,165,220).
RGB: (229,165,220) (90%,65%,86%)
R 229 of 255 = 90%
G 165 of 255 = 65%
B 220 of 255 = 86%
R + G + B ~ 80%. #E5A5DC is quite light color.
R + G + B =
229 + 165 + 220 = 614 (100%)
R 229 of 614 ~ 37.3%
G 165 of 614 ~ 26.87%
B 220 of 614 ~ 35.83%
#E5A5DC color CMYK value is (0,28,4,10).
CMYK: (0,28,4,10) C0M28Y4K10 (0%,28%,4%,10%) (0.00/0.28/0.04/0.10)
E5 | A5 | DC | |
---|---|---|---|
RGB | 229 | 165 | 220 |
HSL | 308° | 55.17% | 77.25% |
HSB/HSV | 308° | 27.95% | 89.80% |
CMYK | 0.00% | 27.95% | 3.93% |
10.20% |
HEX | E5 | A5 | DC |
Decimal | 229 | 165 | 220 |
Binary | 11100101 | 10100101 | 11011100 |
Octal | 345 | 245 | 334 |
Examples of css and html codes for elements with #E5A5DC color. Also use rgb(229,165,220) instead hex code.
.myTextColor { color: #E5A5DC; }
<p style="color:#E5A5DC">This sample text font color is #E5A5DC.</p>
This text font color is #E5A5DC.
.myBgColor { background-color: #E5A5DC; }
<div style="background-color:#E5A5DC">Inner text</div>
This div background color is #E5A5DC.
.myBorderColor { border: 1px solid #E5A5DC; }
<div style="border:3px solid #E5A5DC">Div</div>
This div border color is #E5A5DC.
.myOpacity80 { color: #E5A5DC; opacity: 0.8; }
<p style="color:#E5A5DC;opacity:0.8;">80%</p>
Text with #E5A5DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5A5DC;}
<p style="text-shadow: 3px 3px 1px #E5A5DC">Text here.</p>
This text has shadow with #E5A5DC color.
.textShadow {text-shadow: 3px 3px 1px #E5A5DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5A5DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5A5DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5A5DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5A5DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5A5DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5A5DC; -webkit-box-shadow: 1px 1px 3px 2px #E5A5DC; box-shadow: 1px 1px 3px 2px #E5A5DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5A5DC; -webkit-box-shadow: 1px 1px 3px 2px #E5A5DC; box-shadow:1px 1px 3px 2px #E5A5DC;">
Div content here</div>
This text has color #E5A5DC on black background.
This text has color #E5A5DC on white background.
This text has black color on #E5A5DC background.
This text has white color on #E5A5DC background.