HEX: #E2B364
RGB: (226,179,100)
#E2B364 contains mainly red and green colors. Web safe color of #E2B364 is #CC9966 (or #C96).
#E2B364 color RGB value is (226,179,100).
RGB: (226,179,100) (89%,70%,39%)
R 226 of 255 = 89%
G 179 of 255 = 70%
B 100 of 255 = 39%
R + G + B ~ 66%. #E2B364 is quite light color.
R + G + B =
226 + 179 + 100 = 505 (100%)
R 226 of 505 ~ 44.75%
G 179 of 505 ~ 35.45%
B 100 of 505 ~ 19.8%
#E2B364 color CMYK value is (0,21,56,11).
CMYK: (0,21,56,11) C0M21Y56K11 (0%,21%,56%,11%) (0.00/0.21/0.56/0.11)
E2 | B3 | 64 | |
---|---|---|---|
RGB | 226 | 179 | 100 |
HSL | 38° | 68.48% | 63.92% |
HSB/HSV | 38° | 55.75% | 88.63% |
CMYK | 0.00% | 20.80% | 55.75% |
11.37% |
HEX | E2 | B3 | 64 |
Decimal | 226 | 179 | 100 |
Binary | 11100010 | 10110011 | 1100100 |
Octal | 342 | 263 | 144 |
Examples of css and html codes for elements with #E2B364 color. Also use rgb(226,179,100) instead hex code.
.myTextColor { color: #E2B364; }
<p style="color:#E2B364">This sample text font color is #E2B364.</p>
This text font color is #E2B364.
.myBgColor { background-color: #E2B364; }
<div style="background-color:#E2B364">Inner text</div>
This div background color is #E2B364.
.myBorderColor { border: 1px solid #E2B364; }
<div style="border:3px solid #E2B364">Div</div>
This div border color is #E2B364.
.myOpacity80 { color: #E2B364; opacity: 0.8; }
<p style="color:#E2B364;opacity:0.8;">80%</p>
Text with #E2B364 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2B364;}
<p style="text-shadow: 3px 3px 1px #E2B364">Text here.</p>
This text has shadow with #E2B364 color.
.textShadow {text-shadow: 3px 3px 1px #E2B364, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2B364, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2B364 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2B364, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2B364, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2B364 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2B364; -webkit-box-shadow: 1px 1px 3px 2px #E2B364; box-shadow: 1px 1px 3px 2px #E2B364; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2B364; -webkit-box-shadow: 1px 1px 3px 2px #E2B364; box-shadow:1px 1px 3px 2px #E2B364;">
Div content here</div>
This text has color #E2B364 on black background.
This text has color #E2B364 on white background.
This text has black color on #E2B364 background.
This text has white color on #E2B364 background.