HEX: #E37E08
RGB: (227,126,8)
#E37E08 contains mainly red color. Web safe color of #E37E08 is #CC6600 (or #C60).
#E37E08 color RGB value is (227,126,8).
RGB: (227,126,8) (89%,49%,3%)
R 227 of 255 = 89%
G 126 of 255 = 49%
B 8 of 255 = 3%
R + G + B ~ 47%. #E37E08 is middle color (not dark and not light).
R + G + B =
227 + 126 + 8 = 361 (100%)
R 227 of 361 ~ 62.88%
G 126 of 361 ~ 34.9%
B 8 of 361 ~ 2.22%
#E37E08 color CMYK value is (0,44,96,11).
CMYK: (0,44,96,11) C0M44Y96K11 (0%,44%,96%,11%) (0.00/0.44/0.96/0.11)
E3 | 7E | 08 | |
---|---|---|---|
RGB | 227 | 126 | 8 |
HSL | 32° | 93.19% | 46.08% |
HSB/HSV | 32° | 96.48% | 89.02% |
CMYK | 0.00% | 44.49% | 96.48% |
10.98% |
HEX | E3 | 7E | 08 |
Decimal | 227 | 126 | 8 |
Binary | 11100011 | 1111110 | 1000 |
Octal | 343 | 176 | 10 |
Examples of css and html codes for elements with #E37E08 color. Also use rgb(227,126,8) instead hex code.
.myTextColor { color: #E37E08; }
<p style="color:#E37E08">This sample text font color is #E37E08.</p>
This text font color is #E37E08.
.myBgColor { background-color: #E37E08; }
<div style="background-color:#E37E08">Inner text</div>
This div background color is #E37E08.
.myBorderColor { border: 1px solid #E37E08; }
<div style="border:3px solid #E37E08">Div</div>
This div border color is #E37E08.
.myOpacity80 { color: #E37E08; opacity: 0.8; }
<p style="color:#E37E08;opacity:0.8;">80%</p>
Text with #E37E08 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E37E08;}
<p style="text-shadow: 3px 3px 1px #E37E08">Text here.</p>
This text has shadow with #E37E08 color.
.textShadow {text-shadow: 3px 3px 1px #E37E08, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E37E08, 5px 5px 20px red">Text here.</p>
This text has shadow with #E37E08 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E37E08, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E37E08, Direction=45, Strength=4)">Text</p>
This text has shadow with #E37E08 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E37E08; -webkit-box-shadow: 1px 1px 3px 2px #E37E08; box-shadow: 1px 1px 3px 2px #E37E08; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E37E08; -webkit-box-shadow: 1px 1px 3px 2px #E37E08; box-shadow:1px 1px 3px 2px #E37E08;">
Div content here</div>
This text has color #E37E08 on black background.
This text has color #E37E08 on white background.
This text has black color on #E37E08 background.
This text has white color on #E37E08 background.