HEX: #E6573E
RGB: (230,87,62)
#E6573E contains mainly red color. Web safe color of #E6573E is #CC6633 (or #C63).
#E6573E color RGB value is (230,87,62).
RGB: (230,87,62) (90%,34%,24%)
R 230 of 255 = 90%
G 87 of 255 = 34%
B 62 of 255 = 24%
R + G + B ~ 49%. #E6573E is middle color (not dark and not light).
R + G + B =
230 + 87 + 62 = 379 (100%)
R 230 of 379 ~ 60.69%
G 87 of 379 ~ 22.96%
B 62 of 379 ~ 16.36%
#E6573E color CMYK value is (0,62,73,10).
CMYK: (0,62,73,10) C0M62Y73K10 (0%,62%,73%,10%) (0.00/0.62/0.73/0.10)
E6 | 57 | 3E | |
---|---|---|---|
RGB | 230 | 87 | 62 |
HSL | 9° | 77.06% | 57.25% |
HSB/HSV | 9° | 73.04% | 90.20% |
CMYK | 0.00% | 62.17% | 73.04% |
9.80% |
HEX | E6 | 57 | 3E |
Decimal | 230 | 87 | 62 |
Binary | 11100110 | 1010111 | 111110 |
Octal | 346 | 127 | 76 |
Examples of css and html codes for elements with #E6573E color. Also use rgb(230,87,62) instead hex code.
.myTextColor { color: #E6573E; }
<p style="color:#E6573E">This sample text font color is #E6573E.</p>
This text font color is #E6573E.
.myBgColor { background-color: #E6573E; }
<div style="background-color:#E6573E">Inner text</div>
This div background color is #E6573E.
.myBorderColor { border: 1px solid #E6573E; }
<div style="border:3px solid #E6573E">Div</div>
This div border color is #E6573E.
.myOpacity80 { color: #E6573E; opacity: 0.8; }
<p style="color:#E6573E;opacity:0.8;">80%</p>
Text with #E6573E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6573E;}
<p style="text-shadow: 3px 3px 1px #E6573E">Text here.</p>
This text has shadow with #E6573E color.
.textShadow {text-shadow: 3px 3px 1px #E6573E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6573E, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6573E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6573E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6573E, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6573E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6573E; -webkit-box-shadow: 1px 1px 3px 2px #E6573E; box-shadow: 1px 1px 3px 2px #E6573E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6573E; -webkit-box-shadow: 1px 1px 3px 2px #E6573E; box-shadow:1px 1px 3px 2px #E6573E;">
Div content here</div>
This text has color #E6573E on black background.
This text has color #E6573E on white background.
This text has black color on #E6573E background.
This text has white color on #E6573E background.