HEX: #ED58C6
RGB: (237,88,198)
#ED58C6 contains mainly red and blue colors. Web safe color of #ED58C6 is #FF66CC (or #F6C).
#ED58C6 color RGB value is (237,88,198).
RGB: (237,88,198) (93%,35%,78%)
R 237 of 255 = 93%
G 88 of 255 = 35%
B 198 of 255 = 78%
R + G + B ~ 69%. #ED58C6 is quite light color.
R + G + B =
237 + 88 + 198 = 523 (100%)
R 237 of 523 ~ 45.32%
G 88 of 523 ~ 16.83%
B 198 of 523 ~ 37.86%
#ED58C6 color CMYK value is (0,63,16,7).
CMYK: (0,63,16,7) C0M63Y16K7 (0%,63%,16%,7%) (0.00/0.63/0.16/0.07)
ED | 58 | C6 | |
---|---|---|---|
RGB | 237 | 88 | 198 |
HSL | 316° | 80.54% | 63.73% |
HSB/HSV | 316° | 62.87% | 92.94% |
CMYK | 0.00% | 62.87% | 16.46% |
7.06% |
HEX | ED | 58 | C6 |
Decimal | 237 | 88 | 198 |
Binary | 11101101 | 1011000 | 11000110 |
Octal | 355 | 130 | 306 |
Examples of css and html codes for elements with #ED58C6 color. Also use rgb(237,88,198) instead hex code.
.myTextColor { color: #ED58C6; }
<p style="color:#ED58C6">This sample text font color is #ED58C6.</p>
This text font color is #ED58C6.
.myBgColor { background-color: #ED58C6; }
<div style="background-color:#ED58C6">Inner text</div>
This div background color is #ED58C6.
.myBorderColor { border: 1px solid #ED58C6; }
<div style="border:3px solid #ED58C6">Div</div>
This div border color is #ED58C6.
.myOpacity80 { color: #ED58C6; opacity: 0.8; }
<p style="color:#ED58C6;opacity:0.8;">80%</p>
Text with #ED58C6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED58C6;}
<p style="text-shadow: 3px 3px 1px #ED58C6">Text here.</p>
This text has shadow with #ED58C6 color.
.textShadow {text-shadow: 3px 3px 1px #ED58C6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED58C6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED58C6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED58C6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED58C6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED58C6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED58C6; -webkit-box-shadow: 1px 1px 3px 2px #ED58C6; box-shadow: 1px 1px 3px 2px #ED58C6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED58C6; -webkit-box-shadow: 1px 1px 3px 2px #ED58C6; box-shadow:1px 1px 3px 2px #ED58C6;">
Div content here</div>
This text has color #ED58C6 on black background.
This text has color #ED58C6 on white background.
This text has black color on #ED58C6 background.
This text has white color on #ED58C6 background.