HEX: #E57E18
RGB: (229,126,24)
#E57E18 contains mainly red color. Web safe color of #E57E18 is #CC6600 (or #C60).
#E57E18 color RGB value is (229,126,24).
RGB: (229,126,24) (90%,49%,9%)
R 229 of 255 = 90%
G 126 of 255 = 49%
B 24 of 255 = 9%
R + G + B ~ 49%. #E57E18 is middle color (not dark and not light).
R + G + B =
229 + 126 + 24 = 379 (100%)
R 229 of 379 ~ 60.42%
G 126 of 379 ~ 33.25%
B 24 of 379 ~ 6.33%
#E57E18 color CMYK value is (0,45,90,10).
CMYK: (0,45,90,10) C0M45Y90K10 (0%,45%,90%,10%) (0.00/0.45/0.90/0.10)
E5 | 7E | 18 | |
---|---|---|---|
RGB | 229 | 126 | 24 |
HSL | 30° | 81.03% | 49.61% |
HSB/HSV | 30° | 89.52% | 89.80% |
CMYK | 0.00% | 44.98% | 89.52% |
10.20% |
HEX | E5 | 7E | 18 |
Decimal | 229 | 126 | 24 |
Binary | 11100101 | 1111110 | 11000 |
Octal | 345 | 176 | 30 |
Examples of css and html codes for elements with #E57E18 color. Also use rgb(229,126,24) instead hex code.
.myTextColor { color: #E57E18; }
<p style="color:#E57E18">This sample text font color is #E57E18.</p>
This text font color is #E57E18.
.myBgColor { background-color: #E57E18; }
<div style="background-color:#E57E18">Inner text</div>
This div background color is #E57E18.
.myBorderColor { border: 1px solid #E57E18; }
<div style="border:3px solid #E57E18">Div</div>
This div border color is #E57E18.
.myOpacity80 { color: #E57E18; opacity: 0.8; }
<p style="color:#E57E18;opacity:0.8;">80%</p>
Text with #E57E18 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E57E18;}
<p style="text-shadow: 3px 3px 1px #E57E18">Text here.</p>
This text has shadow with #E57E18 color.
.textShadow {text-shadow: 3px 3px 1px #E57E18, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E57E18, 5px 5px 20px red">Text here.</p>
This text has shadow with #E57E18 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E57E18, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E57E18, Direction=45, Strength=4)">Text</p>
This text has shadow with #E57E18 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E57E18; -webkit-box-shadow: 1px 1px 3px 2px #E57E18; box-shadow: 1px 1px 3px 2px #E57E18; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E57E18; -webkit-box-shadow: 1px 1px 3px 2px #E57E18; box-shadow:1px 1px 3px 2px #E57E18;">
Div content here</div>
This text has color #E57E18 on black background.
This text has color #E57E18 on white background.
This text has black color on #E57E18 background.
This text has white color on #E57E18 background.