HEX: #E59334
RGB: (229,147,52)
#E59334 contains mainly red color. Web safe color of #E59334 is #CC9933 (or #C93).
#E59334 color RGB value is (229,147,52).
RGB: (229,147,52) (90%,58%,20%)
R 229 of 255 = 90%
G 147 of 255 = 58%
B 52 of 255 = 20%
R + G + B ~ 56%. #E59334 is middle color (not dark and not light).
R + G + B =
229 + 147 + 52 = 428 (100%)
R 229 of 428 ~ 53.5%
G 147 of 428 ~ 34.35%
B 52 of 428 ~ 12.15%
#E59334 color CMYK value is (0,36,77,10).
CMYK: (0,36,77,10) C0M36Y77K10 (0%,36%,77%,10%) (0.00/0.36/0.77/0.10)
E5 | 93 | 34 | |
---|---|---|---|
RGB | 229 | 147 | 52 |
HSL | 32° | 77.29% | 55.10% |
HSB/HSV | 32° | 77.29% | 89.80% |
CMYK | 0.00% | 35.81% | 77.29% |
10.20% |
HEX | E5 | 93 | 34 |
Decimal | 229 | 147 | 52 |
Binary | 11100101 | 10010011 | 110100 |
Octal | 345 | 223 | 64 |
Examples of css and html codes for elements with #E59334 color. Also use rgb(229,147,52) instead hex code.
.myTextColor { color: #E59334; }
<p style="color:#E59334">This sample text font color is #E59334.</p>
This text font color is #E59334.
.myBgColor { background-color: #E59334; }
<div style="background-color:#E59334">Inner text</div>
This div background color is #E59334.
.myBorderColor { border: 1px solid #E59334; }
<div style="border:3px solid #E59334">Div</div>
This div border color is #E59334.
.myOpacity80 { color: #E59334; opacity: 0.8; }
<p style="color:#E59334;opacity:0.8;">80%</p>
Text with #E59334 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E59334;}
<p style="text-shadow: 3px 3px 1px #E59334">Text here.</p>
This text has shadow with #E59334 color.
.textShadow {text-shadow: 3px 3px 1px #E59334, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E59334, 5px 5px 20px red">Text here.</p>
This text has shadow with #E59334 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E59334, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E59334, Direction=45, Strength=4)">Text</p>
This text has shadow with #E59334 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E59334; -webkit-box-shadow: 1px 1px 3px 2px #E59334; box-shadow: 1px 1px 3px 2px #E59334; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E59334; -webkit-box-shadow: 1px 1px 3px 2px #E59334; box-shadow:1px 1px 3px 2px #E59334;">
Div content here</div>
This text has color #E59334 on black background.
This text has color #E59334 on white background.
This text has black color on #E59334 background.
This text has white color on #E59334 background.