HEX: #ED5449
RGB: (237,84,73)
#ED5449 contains mainly red color. Web safe color of #ED5449 is #FF6633 (or #F63).
#ED5449 color RGB value is (237,84,73).
RGB: (237,84,73) (93%,33%,29%)
R 237 of 255 = 93%
G 84 of 255 = 33%
B 73 of 255 = 29%
R + G + B ~ 52%. #ED5449 is middle color (not dark and not light).
R + G + B =
237 + 84 + 73 = 394 (100%)
R 237 of 394 ~ 60.15%
G 84 of 394 ~ 21.32%
B 73 of 394 ~ 18.53%
#ED5449 color CMYK value is (0,65,69,7).
CMYK: (0,65,69,7) C0M65Y69K7 (0%,65%,69%,7%) (0.00/0.65/0.69/0.07)
ED | 54 | 49 | |
---|---|---|---|
RGB | 237 | 84 | 73 |
HSL | 4° | 82.00% | 60.78% |
HSB/HSV | 4° | 69.20% | 92.94% |
CMYK | 0.00% | 64.56% | 69.20% |
7.06% |
HEX | ED | 54 | 49 |
Decimal | 237 | 84 | 73 |
Binary | 11101101 | 1010100 | 1001001 |
Octal | 355 | 124 | 111 |
Examples of css and html codes for elements with #ED5449 color. Also use rgb(237,84,73) instead hex code.
.myTextColor { color: #ED5449; }
<p style="color:#ED5449">This sample text font color is #ED5449.</p>
This text font color is #ED5449.
.myBgColor { background-color: #ED5449; }
<div style="background-color:#ED5449">Inner text</div>
This div background color is #ED5449.
.myBorderColor { border: 1px solid #ED5449; }
<div style="border:3px solid #ED5449">Div</div>
This div border color is #ED5449.
.myOpacity80 { color: #ED5449; opacity: 0.8; }
<p style="color:#ED5449;opacity:0.8;">80%</p>
Text with #ED5449 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED5449;}
<p style="text-shadow: 3px 3px 1px #ED5449">Text here.</p>
This text has shadow with #ED5449 color.
.textShadow {text-shadow: 3px 3px 1px #ED5449, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED5449, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED5449 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED5449, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED5449, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED5449 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED5449; -webkit-box-shadow: 1px 1px 3px 2px #ED5449; box-shadow: 1px 1px 3px 2px #ED5449; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED5449; -webkit-box-shadow: 1px 1px 3px 2px #ED5449; box-shadow:1px 1px 3px 2px #ED5449;">
Div content here</div>
This text has color #ED5449 on black background.
This text has color #ED5449 on white background.
This text has black color on #ED5449 background.
This text has white color on #ED5449 background.