HEX: #EE5053
RGB: (238,80,83)
#EE5053 contains mainly red color. Web safe color of #EE5053 is #FF6666 (or #F66).
#EE5053 color RGB value is (238,80,83).
RGB: (238,80,83) (93%,31%,33%)
R 238 of 255 = 93%
G 80 of 255 = 31%
B 83 of 255 = 33%
R + G + B ~ 52%. #EE5053 is middle color (not dark and not light).
R + G + B =
238 + 80 + 83 = 401 (100%)
R 238 of 401 ~ 59.35%
G 80 of 401 ~ 19.95%
B 83 of 401 ~ 20.7%
#EE5053 color CMYK value is (0,66,65,7).
CMYK: (0,66,65,7) C0M66Y65K7 (0%,66%,65%,7%) (0.00/0.66/0.65/0.07)
EE | 50 | 53 | |
---|---|---|---|
RGB | 238 | 80 | 83 |
HSL | 359° | 82.29% | 62.35% |
HSB/HSV | 359° | 66.39% | 93.33% |
CMYK | 0.00% | 66.39% | 65.13% |
6.67% |
HEX | EE | 50 | 53 |
Decimal | 238 | 80 | 83 |
Binary | 11101110 | 1010000 | 1010011 |
Octal | 356 | 120 | 123 |
Examples of css and html codes for elements with #EE5053 color. Also use rgb(238,80,83) instead hex code.
.myTextColor { color: #EE5053; }
<p style="color:#EE5053">This sample text font color is #EE5053.</p>
This text font color is #EE5053.
.myBgColor { background-color: #EE5053; }
<div style="background-color:#EE5053">Inner text</div>
This div background color is #EE5053.
.myBorderColor { border: 1px solid #EE5053; }
<div style="border:3px solid #EE5053">Div</div>
This div border color is #EE5053.
.myOpacity80 { color: #EE5053; opacity: 0.8; }
<p style="color:#EE5053;opacity:0.8;">80%</p>
Text with #EE5053 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE5053;}
<p style="text-shadow: 3px 3px 1px #EE5053">Text here.</p>
This text has shadow with #EE5053 color.
.textShadow {text-shadow: 3px 3px 1px #EE5053, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE5053, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE5053 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE5053, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE5053, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE5053 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE5053; -webkit-box-shadow: 1px 1px 3px 2px #EE5053; box-shadow: 1px 1px 3px 2px #EE5053; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE5053; -webkit-box-shadow: 1px 1px 3px 2px #EE5053; box-shadow:1px 1px 3px 2px #EE5053;">
Div content here</div>
This text has color #EE5053 on black background.
This text has color #EE5053 on white background.
This text has black color on #EE5053 background.
This text has white color on #EE5053 background.