HEX: #ED604E
RGB: (237,96,78)
#ED604E contains mainly red color. Web safe color of #ED604E is #FF6666 (or #F66).
#ED604E color RGB value is (237,96,78).
RGB: (237,96,78) (93%,38%,31%)
R 237 of 255 = 93%
G 96 of 255 = 38%
B 78 of 255 = 31%
R + G + B ~ 54%. #ED604E is middle color (not dark and not light).
R + G + B =
237 + 96 + 78 = 411 (100%)
R 237 of 411 ~ 57.66%
G 96 of 411 ~ 23.36%
B 78 of 411 ~ 18.98%
#ED604E color CMYK value is (0,59,67,7).
CMYK: (0,59,67,7) C0M59Y67K7 (0%,59%,67%,7%) (0.00/0.59/0.67/0.07)
ED | 60 | 4E | |
---|---|---|---|
RGB | 237 | 96 | 78 |
HSL | 7° | 81.54% | 61.76% |
HSB/HSV | 7° | 67.09% | 92.94% |
CMYK | 0.00% | 59.49% | 67.09% |
7.06% |
HEX | ED | 60 | 4E |
Decimal | 237 | 96 | 78 |
Binary | 11101101 | 1100000 | 1001110 |
Octal | 355 | 140 | 116 |
Examples of css and html codes for elements with #ED604E color. Also use rgb(237,96,78) instead hex code.
.myTextColor { color: #ED604E; }
<p style="color:#ED604E">This sample text font color is #ED604E.</p>
This text font color is #ED604E.
.myBgColor { background-color: #ED604E; }
<div style="background-color:#ED604E">Inner text</div>
This div background color is #ED604E.
.myBorderColor { border: 1px solid #ED604E; }
<div style="border:3px solid #ED604E">Div</div>
This div border color is #ED604E.
.myOpacity80 { color: #ED604E; opacity: 0.8; }
<p style="color:#ED604E;opacity:0.8;">80%</p>
Text with #ED604E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED604E;}
<p style="text-shadow: 3px 3px 1px #ED604E">Text here.</p>
This text has shadow with #ED604E color.
.textShadow {text-shadow: 3px 3px 1px #ED604E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED604E, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED604E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED604E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED604E, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED604E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED604E; -webkit-box-shadow: 1px 1px 3px 2px #ED604E; box-shadow: 1px 1px 3px 2px #ED604E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED604E; -webkit-box-shadow: 1px 1px 3px 2px #ED604E; box-shadow:1px 1px 3px 2px #ED604E;">
Div content here</div>
This text has color #ED604E on black background.
This text has color #ED604E on white background.
This text has black color on #ED604E background.
This text has white color on #ED604E background.