HEX: #ED89CB
RGB: (237,137,203)
#ED89CB contains mainly red and blue colors. Web safe color of #ED89CB is #FF99CC (or #F9C).
#ED89CB color RGB value is (237,137,203).
RGB: (237,137,203) (93%,54%,80%)
R 237 of 255 = 93%
G 137 of 255 = 54%
B 203 of 255 = 80%
R + G + B ~ 76%. #ED89CB is quite light color.
R + G + B =
237 + 137 + 203 = 577 (100%)
R 237 of 577 ~ 41.07%
G 137 of 577 ~ 23.74%
B 203 of 577 ~ 35.18%
#ED89CB color CMYK value is (0,42,14,7).
CMYK: (0,42,14,7) C0M42Y14K7 (0%,42%,14%,7%) (0.00/0.42/0.14/0.07)
ED | 89 | CB | |
---|---|---|---|
RGB | 237 | 137 | 203 |
HSL | 320° | 73.53% | 73.33% |
HSB/HSV | 320° | 42.19% | 92.94% |
CMYK | 0.00% | 42.19% | 14.35% |
7.06% |
HEX | ED | 89 | CB |
Decimal | 237 | 137 | 203 |
Binary | 11101101 | 10001001 | 11001011 |
Octal | 355 | 211 | 313 |
Examples of css and html codes for elements with #ED89CB color. Also use rgb(237,137,203) instead hex code.
.myTextColor { color: #ED89CB; }
<p style="color:#ED89CB">This sample text font color is #ED89CB.</p>
This text font color is #ED89CB.
.myBgColor { background-color: #ED89CB; }
<div style="background-color:#ED89CB">Inner text</div>
This div background color is #ED89CB.
.myBorderColor { border: 1px solid #ED89CB; }
<div style="border:3px solid #ED89CB">Div</div>
This div border color is #ED89CB.
.myOpacity80 { color: #ED89CB; opacity: 0.8; }
<p style="color:#ED89CB;opacity:0.8;">80%</p>
Text with #ED89CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED89CB;}
<p style="text-shadow: 3px 3px 1px #ED89CB">Text here.</p>
This text has shadow with #ED89CB color.
.textShadow {text-shadow: 3px 3px 1px #ED89CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED89CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED89CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED89CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED89CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED89CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED89CB; -webkit-box-shadow: 1px 1px 3px 2px #ED89CB; box-shadow: 1px 1px 3px 2px #ED89CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED89CB; -webkit-box-shadow: 1px 1px 3px 2px #ED89CB; box-shadow:1px 1px 3px 2px #ED89CB;">
Div content here</div>
This text has color #ED89CB on black background.
This text has color #ED89CB on white background.
This text has black color on #ED89CB background.
This text has white color on #ED89CB background.