HEX: #E98620
RGB: (233,134,32)
#E98620 contains mainly red color. Web safe color of #E98620 is #FF9933 (or #F93).
#E98620 color RGB value is (233,134,32).
RGB: (233,134,32) (91%,53%,13%)
R 233 of 255 = 91%
G 134 of 255 = 53%
B 32 of 255 = 13%
R + G + B ~ 52%. #E98620 is middle color (not dark and not light).
R + G + B =
233 + 134 + 32 = 399 (100%)
R 233 of 399 ~ 58.4%
G 134 of 399 ~ 33.58%
B 32 of 399 ~ 8.02%
#E98620 color CMYK value is (0,42,86,9).
CMYK: (0,42,86,9) C0M42Y86K9 (0%,42%,86%,9%) (0.00/0.42/0.86/0.09)
E9 | 86 | 20 | |
---|---|---|---|
RGB | 233 | 134 | 32 |
HSL | 30° | 82.04% | 51.96% |
HSB/HSV | 30° | 86.27% | 91.37% |
CMYK | 0.00% | 42.49% | 86.27% |
8.63% |
HEX | E9 | 86 | 20 |
Decimal | 233 | 134 | 32 |
Binary | 11101001 | 10000110 | 100000 |
Octal | 351 | 206 | 40 |
Examples of css and html codes for elements with #E98620 color. Also use rgb(233,134,32) instead hex code.
.myTextColor { color: #E98620; }
<p style="color:#E98620">This sample text font color is #E98620.</p>
This text font color is #E98620.
.myBgColor { background-color: #E98620; }
<div style="background-color:#E98620">Inner text</div>
This div background color is #E98620.
.myBorderColor { border: 1px solid #E98620; }
<div style="border:3px solid #E98620">Div</div>
This div border color is #E98620.
.myOpacity80 { color: #E98620; opacity: 0.8; }
<p style="color:#E98620;opacity:0.8;">80%</p>
Text with #E98620 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E98620;}
<p style="text-shadow: 3px 3px 1px #E98620">Text here.</p>
This text has shadow with #E98620 color.
.textShadow {text-shadow: 3px 3px 1px #E98620, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E98620, 5px 5px 20px red">Text here.</p>
This text has shadow with #E98620 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E98620, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E98620, Direction=45, Strength=4)">Text</p>
This text has shadow with #E98620 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E98620; -webkit-box-shadow: 1px 1px 3px 2px #E98620; box-shadow: 1px 1px 3px 2px #E98620; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E98620; -webkit-box-shadow: 1px 1px 3px 2px #E98620; box-shadow:1px 1px 3px 2px #E98620;">
Div content here</div>
This text has color #E98620 on black background.
This text has color #E98620 on white background.
This text has black color on #E98620 background.
This text has white color on #E98620 background.