HEX: #E65989
RGB: (230,89,137)
#E65989 contains mainly red color. Web safe color of #E65989 is #CC6699 (or #C69).
#E65989 color RGB value is (230,89,137).
RGB: (230,89,137) (90%,35%,54%)
R 230 of 255 = 90%
G 89 of 255 = 35%
B 137 of 255 = 54%
R + G + B ~ 60%. #E65989 is middle color (not dark and not light).
R + G + B =
230 + 89 + 137 = 456 (100%)
R 230 of 456 ~ 50.44%
G 89 of 456 ~ 19.52%
B 137 of 456 ~ 30.04%
#E65989 color CMYK value is (0,61,40,10).
CMYK: (0,61,40,10) C0M61Y40K10 (0%,61%,40%,10%) (0.00/0.61/0.40/0.10)
E6 | 59 | 89 | |
---|---|---|---|
RGB | 230 | 89 | 137 |
HSL | 340° | 73.82% | 62.55% |
HSB/HSV | 340° | 61.30% | 90.20% |
CMYK | 0.00% | 61.30% | 40.43% |
9.80% |
HEX | E6 | 59 | 89 |
Decimal | 230 | 89 | 137 |
Binary | 11100110 | 1011001 | 10001001 |
Octal | 346 | 131 | 211 |
Examples of css and html codes for elements with #E65989 color. Also use rgb(230,89,137) instead hex code.
.myTextColor { color: #E65989; }
<p style="color:#E65989">This sample text font color is #E65989.</p>
This text font color is #E65989.
.myBgColor { background-color: #E65989; }
<div style="background-color:#E65989">Inner text</div>
This div background color is #E65989.
.myBorderColor { border: 1px solid #E65989; }
<div style="border:3px solid #E65989">Div</div>
This div border color is #E65989.
.myOpacity80 { color: #E65989; opacity: 0.8; }
<p style="color:#E65989;opacity:0.8;">80%</p>
Text with #E65989 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E65989;}
<p style="text-shadow: 3px 3px 1px #E65989">Text here.</p>
This text has shadow with #E65989 color.
.textShadow {text-shadow: 3px 3px 1px #E65989, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E65989, 5px 5px 20px red">Text here.</p>
This text has shadow with #E65989 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E65989, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E65989, Direction=45, Strength=4)">Text</p>
This text has shadow with #E65989 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E65989; -webkit-box-shadow: 1px 1px 3px 2px #E65989; box-shadow: 1px 1px 3px 2px #E65989; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E65989; -webkit-box-shadow: 1px 1px 3px 2px #E65989; box-shadow:1px 1px 3px 2px #E65989;">
Div content here</div>
This text has color #E65989 on black background.
This text has color #E65989 on white background.
This text has black color on #E65989 background.
This text has white color on #E65989 background.