HEX: #EC393A
RGB: (236,57,58)
#EC393A contains mainly red color. Web safe color of #EC393A is #FF3333 (or #F33).
#EC393A color RGB value is (236,57,58).
RGB: (236,57,58) (93%,22%,23%)
R 236 of 255 = 93%
G 57 of 255 = 22%
B 58 of 255 = 23%
R + G + B ~ 46%. #EC393A is middle color (not dark and not light).
R + G + B =
236 + 57 + 58 = 351 (100%)
R 236 of 351 ~ 67.24%
G 57 of 351 ~ 16.24%
B 58 of 351 ~ 16.52%
#EC393A color CMYK value is (0,76,75,7).
CMYK: (0,76,75,7) C0M76Y75K7 (0%,76%,75%,7%) (0.00/0.76/0.75/0.07)
EC | 39 | 3A | |
---|---|---|---|
RGB | 236 | 57 | 58 |
HSL | 360° | 82.49% | 57.45% |
HSB/HSV | 360° | 75.85% | 92.55% |
CMYK | 0.00% | 75.85% | 75.42% |
7.45% |
HEX | EC | 39 | 3A |
Decimal | 236 | 57 | 58 |
Binary | 11101100 | 111001 | 111010 |
Octal | 354 | 71 | 72 |
Examples of css and html codes for elements with #EC393A color. Also use rgb(236,57,58) instead hex code.
.myTextColor { color: #EC393A; }
<p style="color:#EC393A">This sample text font color is #EC393A.</p>
This text font color is #EC393A.
.myBgColor { background-color: #EC393A; }
<div style="background-color:#EC393A">Inner text</div>
This div background color is #EC393A.
.myBorderColor { border: 1px solid #EC393A; }
<div style="border:3px solid #EC393A">Div</div>
This div border color is #EC393A.
.myOpacity80 { color: #EC393A; opacity: 0.8; }
<p style="color:#EC393A;opacity:0.8;">80%</p>
Text with #EC393A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EC393A;}
<p style="text-shadow: 3px 3px 1px #EC393A">Text here.</p>
This text has shadow with #EC393A color.
.textShadow {text-shadow: 3px 3px 1px #EC393A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EC393A, 5px 5px 20px red">Text here.</p>
This text has shadow with #EC393A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EC393A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EC393A, Direction=45, Strength=4)">Text</p>
This text has shadow with #EC393A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EC393A; -webkit-box-shadow: 1px 1px 3px 2px #EC393A; box-shadow: 1px 1px 3px 2px #EC393A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EC393A; -webkit-box-shadow: 1px 1px 3px 2px #EC393A; box-shadow:1px 1px 3px 2px #EC393A;">
Div content here</div>
This text has color #EC393A on black background.
This text has color #EC393A on white background.
This text has black color on #EC393A background.
This text has white color on #EC393A background.