HEX: #E59EBA
RGB: (229,158,186)
#E59EBA contains mainly red and blue colors. Web safe color of #E59EBA is #CC99CC (or #C9C).
#E59EBA color RGB value is (229,158,186).
RGB: (229,158,186) (90%,62%,73%)
R 229 of 255 = 90%
G 158 of 255 = 62%
B 186 of 255 = 73%
R + G + B ~ 75%. #E59EBA is quite light color.
R + G + B =
229 + 158 + 186 = 573 (100%)
R 229 of 573 ~ 39.97%
G 158 of 573 ~ 27.57%
B 186 of 573 ~ 32.46%
#E59EBA color CMYK value is (0,31,19,10).
CMYK: (0,31,19,10) C0M31Y19K10 (0%,31%,19%,10%) (0.00/0.31/0.19/0.10)
E5 | 9E | BA | |
---|---|---|---|
RGB | 229 | 158 | 186 |
HSL | 336° | 57.72% | 75.88% |
HSB/HSV | 336° | 31.00% | 89.80% |
CMYK | 0.00% | 31.00% | 18.78% |
10.20% |
HEX | E5 | 9E | BA |
Decimal | 229 | 158 | 186 |
Binary | 11100101 | 10011110 | 10111010 |
Octal | 345 | 236 | 272 |
Examples of css and html codes for elements with #E59EBA color. Also use rgb(229,158,186) instead hex code.
.myTextColor { color: #E59EBA; }
<p style="color:#E59EBA">This sample text font color is #E59EBA.</p>
This text font color is #E59EBA.
.myBgColor { background-color: #E59EBA; }
<div style="background-color:#E59EBA">Inner text</div>
This div background color is #E59EBA.
.myBorderColor { border: 1px solid #E59EBA; }
<div style="border:3px solid #E59EBA">Div</div>
This div border color is #E59EBA.
.myOpacity80 { color: #E59EBA; opacity: 0.8; }
<p style="color:#E59EBA;opacity:0.8;">80%</p>
Text with #E59EBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E59EBA;}
<p style="text-shadow: 3px 3px 1px #E59EBA">Text here.</p>
This text has shadow with #E59EBA color.
.textShadow {text-shadow: 3px 3px 1px #E59EBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E59EBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E59EBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E59EBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E59EBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E59EBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E59EBA; -webkit-box-shadow: 1px 1px 3px 2px #E59EBA; box-shadow: 1px 1px 3px 2px #E59EBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E59EBA; -webkit-box-shadow: 1px 1px 3px 2px #E59EBA; box-shadow:1px 1px 3px 2px #E59EBA;">
Div content here</div>
This text has color #E59EBA on black background.
This text has color #E59EBA on white background.
This text has black color on #E59EBA background.
This text has white color on #E59EBA background.