HEX: #EC5B73
RGB: (236,91,115)
#EC5B73 contains mainly red color. Web safe color of #EC5B73 is #FF6666 (or #F66).
#EC5B73 color RGB value is (236,91,115).
RGB: (236,91,115) (93%,36%,45%)
R 236 of 255 = 93%
G 91 of 255 = 36%
B 115 of 255 = 45%
R + G + B ~ 58%. #EC5B73 is middle color (not dark and not light).
R + G + B =
236 + 91 + 115 = 442 (100%)
R 236 of 442 ~ 53.39%
G 91 of 442 ~ 20.59%
B 115 of 442 ~ 26.02%
#EC5B73 color CMYK value is (0,61,51,7).
CMYK: (0,61,51,7) C0M61Y51K7 (0%,61%,51%,7%) (0.00/0.61/0.51/0.07)
EC | 5B | 73 | |
---|---|---|---|
RGB | 236 | 91 | 115 |
HSL | 350° | 79.23% | 64.12% |
HSB/HSV | 350° | 61.44% | 92.55% |
CMYK | 0.00% | 61.44% | 51.27% |
7.45% |
HEX | EC | 5B | 73 |
Decimal | 236 | 91 | 115 |
Binary | 11101100 | 1011011 | 1110011 |
Octal | 354 | 133 | 163 |
Examples of css and html codes for elements with #EC5B73 color. Also use rgb(236,91,115) instead hex code.
.myTextColor { color: #EC5B73; }
<p style="color:#EC5B73">This sample text font color is #EC5B73.</p>
This text font color is #EC5B73.
.myBgColor { background-color: #EC5B73; }
<div style="background-color:#EC5B73">Inner text</div>
This div background color is #EC5B73.
.myBorderColor { border: 1px solid #EC5B73; }
<div style="border:3px solid #EC5B73">Div</div>
This div border color is #EC5B73.
.myOpacity80 { color: #EC5B73; opacity: 0.8; }
<p style="color:#EC5B73;opacity:0.8;">80%</p>
Text with #EC5B73 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EC5B73;}
<p style="text-shadow: 3px 3px 1px #EC5B73">Text here.</p>
This text has shadow with #EC5B73 color.
.textShadow {text-shadow: 3px 3px 1px #EC5B73, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EC5B73, 5px 5px 20px red">Text here.</p>
This text has shadow with #EC5B73 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EC5B73, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EC5B73, Direction=45, Strength=4)">Text</p>
This text has shadow with #EC5B73 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EC5B73; -webkit-box-shadow: 1px 1px 3px 2px #EC5B73; box-shadow: 1px 1px 3px 2px #EC5B73; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EC5B73; -webkit-box-shadow: 1px 1px 3px 2px #EC5B73; box-shadow:1px 1px 3px 2px #EC5B73;">
Div content here</div>
This text has color #EC5B73 on black background.
This text has color #EC5B73 on white background.
This text has black color on #EC5B73 background.
This text has white color on #EC5B73 background.