HEX: #E2B32E
RGB: (226,179,46)
#E2B32E contains mainly red and green colors. Web safe color of #E2B32E is #CC9933 (or #C93).
#E2B32E color RGB value is (226,179,46).
RGB: (226,179,46) (89%,70%,18%)
R 226 of 255 = 89%
G 179 of 255 = 70%
B 46 of 255 = 18%
R + G + B ~ 59%. #E2B32E is middle color (not dark and not light).
R + G + B =
226 + 179 + 46 = 451 (100%)
R 226 of 451 ~ 50.11%
G 179 of 451 ~ 39.69%
B 46 of 451 ~ 10.2%
#E2B32E color CMYK value is (0,21,80,11).
CMYK: (0,21,80,11) C0M21Y80K11 (0%,21%,80%,11%) (0.00/0.21/0.80/0.11)
E2 | B3 | 2E | |
---|---|---|---|
RGB | 226 | 179 | 46 |
HSL | 44° | 75.63% | 53.33% |
HSB/HSV | 44° | 79.65% | 88.63% |
CMYK | 0.00% | 20.80% | 79.65% |
11.37% |
HEX | E2 | B3 | 2E |
Decimal | 226 | 179 | 46 |
Binary | 11100010 | 10110011 | 101110 |
Octal | 342 | 263 | 56 |
Examples of css and html codes for elements with #E2B32E color. Also use rgb(226,179,46) instead hex code.
.myTextColor { color: #E2B32E; }
<p style="color:#E2B32E">This sample text font color is #E2B32E.</p>
This text font color is #E2B32E.
.myBgColor { background-color: #E2B32E; }
<div style="background-color:#E2B32E">Inner text</div>
This div background color is #E2B32E.
.myBorderColor { border: 1px solid #E2B32E; }
<div style="border:3px solid #E2B32E">Div</div>
This div border color is #E2B32E.
.myOpacity80 { color: #E2B32E; opacity: 0.8; }
<p style="color:#E2B32E;opacity:0.8;">80%</p>
Text with #E2B32E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2B32E;}
<p style="text-shadow: 3px 3px 1px #E2B32E">Text here.</p>
This text has shadow with #E2B32E color.
.textShadow {text-shadow: 3px 3px 1px #E2B32E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2B32E, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2B32E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2B32E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2B32E, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2B32E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2B32E; -webkit-box-shadow: 1px 1px 3px 2px #E2B32E; box-shadow: 1px 1px 3px 2px #E2B32E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2B32E; -webkit-box-shadow: 1px 1px 3px 2px #E2B32E; box-shadow:1px 1px 3px 2px #E2B32E;">
Div content here</div>
This text has color #E2B32E on black background.
This text has color #E2B32E on white background.
This text has black color on #E2B32E background.
This text has white color on #E2B32E background.