HEX: #E591DE
RGB: (229,145,222)
#E591DE contains mainly red and blue colors. Web safe color of #E591DE is #CC99CC (or #C9C).
#E591DE color RGB value is (229,145,222).
RGB: (229,145,222) (90%,57%,87%)
R 229 of 255 = 90%
G 145 of 255 = 57%
B 222 of 255 = 87%
R + G + B ~ 78%. #E591DE is quite light color.
R + G + B =
229 + 145 + 222 = 596 (100%)
R 229 of 596 ~ 38.42%
G 145 of 596 ~ 24.33%
B 222 of 596 ~ 37.25%
#E591DE color CMYK value is (0,37,3,10).
CMYK: (0,37,3,10) C0M37Y3K10 (0%,37%,3%,10%) (0.00/0.37/0.03/0.10)
E5 | 91 | DE | |
---|---|---|---|
RGB | 229 | 145 | 222 |
HSL | 305° | 61.76% | 73.33% |
HSB/HSV | 305° | 36.68% | 89.80% |
CMYK | 0.00% | 36.68% | 3.06% |
10.20% |
HEX | E5 | 91 | DE |
Decimal | 229 | 145 | 222 |
Binary | 11100101 | 10010001 | 11011110 |
Octal | 345 | 221 | 336 |
Examples of css and html codes for elements with #E591DE color. Also use rgb(229,145,222) instead hex code.
.myTextColor { color: #E591DE; }
<p style="color:#E591DE">This sample text font color is #E591DE.</p>
This text font color is #E591DE.
.myBgColor { background-color: #E591DE; }
<div style="background-color:#E591DE">Inner text</div>
This div background color is #E591DE.
.myBorderColor { border: 1px solid #E591DE; }
<div style="border:3px solid #E591DE">Div</div>
This div border color is #E591DE.
.myOpacity80 { color: #E591DE; opacity: 0.8; }
<p style="color:#E591DE;opacity:0.8;">80%</p>
Text with #E591DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E591DE;}
<p style="text-shadow: 3px 3px 1px #E591DE">Text here.</p>
This text has shadow with #E591DE color.
.textShadow {text-shadow: 3px 3px 1px #E591DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E591DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E591DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E591DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E591DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E591DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E591DE; -webkit-box-shadow: 1px 1px 3px 2px #E591DE; box-shadow: 1px 1px 3px 2px #E591DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E591DE; -webkit-box-shadow: 1px 1px 3px 2px #E591DE; box-shadow:1px 1px 3px 2px #E591DE;">
Div content here</div>
This text has color #E591DE on black background.
This text has color #E591DE on white background.
This text has black color on #E591DE background.
This text has white color on #E591DE background.