HEX: #E2B135
RGB: (226,177,53)
#E2B135 contains mainly red and green colors. Web safe color of #E2B135 is #CC9933 (or #C93).
#E2B135 color RGB value is (226,177,53).
RGB: (226,177,53) (89%,69%,21%)
R 226 of 255 = 89%
G 177 of 255 = 69%
B 53 of 255 = 21%
R + G + B ~ 60%. #E2B135 is middle color (not dark and not light).
R + G + B =
226 + 177 + 53 = 456 (100%)
R 226 of 456 ~ 49.56%
G 177 of 456 ~ 38.82%
B 53 of 456 ~ 11.62%
#E2B135 color CMYK value is (0,22,77,11).
CMYK: (0,22,77,11) C0M22Y77K11 (0%,22%,77%,11%) (0.00/0.22/0.77/0.11)
E2 | B1 | 35 | |
---|---|---|---|
RGB | 226 | 177 | 53 |
HSL | 43° | 74.89% | 54.71% |
HSB/HSV | 43° | 76.55% | 88.63% |
CMYK | 0.00% | 21.68% | 76.55% |
11.37% |
HEX | E2 | B1 | 35 |
Decimal | 226 | 177 | 53 |
Binary | 11100010 | 10110001 | 110101 |
Octal | 342 | 261 | 65 |
Examples of css and html codes for elements with #E2B135 color. Also use rgb(226,177,53) instead hex code.
.myTextColor { color: #E2B135; }
<p style="color:#E2B135">This sample text font color is #E2B135.</p>
This text font color is #E2B135.
.myBgColor { background-color: #E2B135; }
<div style="background-color:#E2B135">Inner text</div>
This div background color is #E2B135.
.myBorderColor { border: 1px solid #E2B135; }
<div style="border:3px solid #E2B135">Div</div>
This div border color is #E2B135.
.myOpacity80 { color: #E2B135; opacity: 0.8; }
<p style="color:#E2B135;opacity:0.8;">80%</p>
Text with #E2B135 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2B135;}
<p style="text-shadow: 3px 3px 1px #E2B135">Text here.</p>
This text has shadow with #E2B135 color.
.textShadow {text-shadow: 3px 3px 1px #E2B135, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2B135, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2B135 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2B135, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2B135, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2B135 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2B135; -webkit-box-shadow: 1px 1px 3px 2px #E2B135; box-shadow: 1px 1px 3px 2px #E2B135; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2B135; -webkit-box-shadow: 1px 1px 3px 2px #E2B135; box-shadow:1px 1px 3px 2px #E2B135;">
Div content here</div>
This text has color #E2B135 on black background.
This text has color #E2B135 on white background.
This text has black color on #E2B135 background.
This text has white color on #E2B135 background.