HEX: #ED71B5
RGB: (237,113,181)
#ED71B5 contains mainly red and blue colors. Web safe color of #ED71B5 is #FF66CC (or #F6C).
#ED71B5 color RGB value is (237,113,181).
RGB: (237,113,181) (93%,44%,71%)
R 237 of 255 = 93%
G 113 of 255 = 44%
B 181 of 255 = 71%
R + G + B ~ 69%. #ED71B5 is quite light color.
R + G + B =
237 + 113 + 181 = 531 (100%)
R 237 of 531 ~ 44.63%
G 113 of 531 ~ 21.28%
B 181 of 531 ~ 34.09%
#ED71B5 color CMYK value is (0,52,24,7).
CMYK: (0,52,24,7) C0M52Y24K7 (0%,52%,24%,7%) (0.00/0.52/0.24/0.07)
ED | 71 | B5 | |
---|---|---|---|
RGB | 237 | 113 | 181 |
HSL | 327° | 77.50% | 68.63% |
HSB/HSV | 327° | 52.32% | 92.94% |
CMYK | 0.00% | 52.32% | 23.63% |
7.06% |
HEX | ED | 71 | B5 |
Decimal | 237 | 113 | 181 |
Binary | 11101101 | 1110001 | 10110101 |
Octal | 355 | 161 | 265 |
Examples of css and html codes for elements with #ED71B5 color. Also use rgb(237,113,181) instead hex code.
.myTextColor { color: #ED71B5; }
<p style="color:#ED71B5">This sample text font color is #ED71B5.</p>
This text font color is #ED71B5.
.myBgColor { background-color: #ED71B5; }
<div style="background-color:#ED71B5">Inner text</div>
This div background color is #ED71B5.
.myBorderColor { border: 1px solid #ED71B5; }
<div style="border:3px solid #ED71B5">Div</div>
This div border color is #ED71B5.
.myOpacity80 { color: #ED71B5; opacity: 0.8; }
<p style="color:#ED71B5;opacity:0.8;">80%</p>
Text with #ED71B5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED71B5;}
<p style="text-shadow: 3px 3px 1px #ED71B5">Text here.</p>
This text has shadow with #ED71B5 color.
.textShadow {text-shadow: 3px 3px 1px #ED71B5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED71B5, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED71B5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED71B5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED71B5, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED71B5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED71B5; -webkit-box-shadow: 1px 1px 3px 2px #ED71B5; box-shadow: 1px 1px 3px 2px #ED71B5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED71B5; -webkit-box-shadow: 1px 1px 3px 2px #ED71B5; box-shadow:1px 1px 3px 2px #ED71B5;">
Div content here</div>
This text has color #ED71B5 on black background.
This text has color #ED71B5 on white background.
This text has black color on #ED71B5 background.
This text has white color on #ED71B5 background.