HEX: #E57F2E
RGB: (229,127,46)
#E57F2E contains mainly red color. Web safe color of #E57F2E is #CC6633 (or #C63).
#E57F2E color RGB value is (229,127,46).
RGB: (229,127,46) (90%,50%,18%)
R 229 of 255 = 90%
G 127 of 255 = 50%
B 46 of 255 = 18%
R + G + B ~ 53%. #E57F2E is middle color (not dark and not light).
R + G + B =
229 + 127 + 46 = 402 (100%)
R 229 of 402 ~ 56.97%
G 127 of 402 ~ 31.59%
B 46 of 402 ~ 11.44%
#E57F2E color CMYK value is (0,45,80,10).
CMYK: (0,45,80,10) C0M45Y80K10 (0%,45%,80%,10%) (0.00/0.45/0.80/0.10)
E5 | 7F | 2E | |
---|---|---|---|
RGB | 229 | 127 | 46 |
HSL | 27° | 77.87% | 53.92% |
HSB/HSV | 27° | 79.91% | 89.80% |
CMYK | 0.00% | 44.54% | 79.91% |
10.20% |
HEX | E5 | 7F | 2E |
Decimal | 229 | 127 | 46 |
Binary | 11100101 | 1111111 | 101110 |
Octal | 345 | 177 | 56 |
Examples of css and html codes for elements with #E57F2E color. Also use rgb(229,127,46) instead hex code.
.myTextColor { color: #E57F2E; }
<p style="color:#E57F2E">This sample text font color is #E57F2E.</p>
This text font color is #E57F2E.
.myBgColor { background-color: #E57F2E; }
<div style="background-color:#E57F2E">Inner text</div>
This div background color is #E57F2E.
.myBorderColor { border: 1px solid #E57F2E; }
<div style="border:3px solid #E57F2E">Div</div>
This div border color is #E57F2E.
.myOpacity80 { color: #E57F2E; opacity: 0.8; }
<p style="color:#E57F2E;opacity:0.8;">80%</p>
Text with #E57F2E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E57F2E;}
<p style="text-shadow: 3px 3px 1px #E57F2E">Text here.</p>
This text has shadow with #E57F2E color.
.textShadow {text-shadow: 3px 3px 1px #E57F2E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E57F2E, 5px 5px 20px red">Text here.</p>
This text has shadow with #E57F2E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E57F2E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E57F2E, Direction=45, Strength=4)">Text</p>
This text has shadow with #E57F2E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E57F2E; -webkit-box-shadow: 1px 1px 3px 2px #E57F2E; box-shadow: 1px 1px 3px 2px #E57F2E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E57F2E; -webkit-box-shadow: 1px 1px 3px 2px #E57F2E; box-shadow:1px 1px 3px 2px #E57F2E;">
Div content here</div>
This text has color #E57F2E on black background.
This text has color #E57F2E on white background.
This text has black color on #E57F2E background.
This text has white color on #E57F2E background.