HEX: #E589CA
RGB: (229,137,202)
#E589CA contains mainly red and blue colors. Web safe color of #E589CA is #CC99CC (or #C9C).
#E589CA color RGB value is (229,137,202).
RGB: (229,137,202) (90%,54%,79%)
R 229 of 255 = 90%
G 137 of 255 = 54%
B 202 of 255 = 79%
R + G + B ~ 74%. #E589CA is quite light color.
R + G + B =
229 + 137 + 202 = 568 (100%)
R 229 of 568 ~ 40.32%
G 137 of 568 ~ 24.12%
B 202 of 568 ~ 35.56%
#E589CA color CMYK value is (0,40,12,10).
CMYK: (0,40,12,10) C0M40Y12K10 (0%,40%,12%,10%) (0.00/0.40/0.12/0.10)
E5 | 89 | CA | |
---|---|---|---|
RGB | 229 | 137 | 202 |
HSL | 318° | 63.89% | 71.76% |
HSB/HSV | 318° | 40.17% | 89.80% |
CMYK | 0.00% | 40.17% | 11.79% |
10.20% |
HEX | E5 | 89 | CA |
Decimal | 229 | 137 | 202 |
Binary | 11100101 | 10001001 | 11001010 |
Octal | 345 | 211 | 312 |
Examples of css and html codes for elements with #E589CA color. Also use rgb(229,137,202) instead hex code.
.myTextColor { color: #E589CA; }
<p style="color:#E589CA">This sample text font color is #E589CA.</p>
This text font color is #E589CA.
.myBgColor { background-color: #E589CA; }
<div style="background-color:#E589CA">Inner text</div>
This div background color is #E589CA.
.myBorderColor { border: 1px solid #E589CA; }
<div style="border:3px solid #E589CA">Div</div>
This div border color is #E589CA.
.myOpacity80 { color: #E589CA; opacity: 0.8; }
<p style="color:#E589CA;opacity:0.8;">80%</p>
Text with #E589CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E589CA;}
<p style="text-shadow: 3px 3px 1px #E589CA">Text here.</p>
This text has shadow with #E589CA color.
.textShadow {text-shadow: 3px 3px 1px #E589CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E589CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E589CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E589CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E589CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E589CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E589CA; -webkit-box-shadow: 1px 1px 3px 2px #E589CA; box-shadow: 1px 1px 3px 2px #E589CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E589CA; -webkit-box-shadow: 1px 1px 3px 2px #E589CA; box-shadow:1px 1px 3px 2px #E589CA;">
Div content here</div>
This text has color #E589CA on black background.
This text has color #E589CA on white background.
This text has black color on #E589CA background.
This text has white color on #E589CA background.