HEX: #E2B46F
RGB: (226,180,111)
#E2B46F contains mainly red and green colors. Web safe color of #E2B46F is #CCCC66 (or #CC6).
#E2B46F color RGB value is (226,180,111).
RGB: (226,180,111) (89%,71%,44%)
R 226 of 255 = 89%
G 180 of 255 = 71%
B 111 of 255 = 44%
R + G + B ~ 68%. #E2B46F is quite light color.
R + G + B =
226 + 180 + 111 = 517 (100%)
R 226 of 517 ~ 43.71%
G 180 of 517 ~ 34.82%
B 111 of 517 ~ 21.47%
#E2B46F color CMYK value is (0,20,51,11).
CMYK: (0,20,51,11) C0M20Y51K11 (0%,20%,51%,11%) (0.00/0.20/0.51/0.11)
E2 | B4 | 6F | |
---|---|---|---|
RGB | 226 | 180 | 111 |
HSL | 36° | 66.47% | 66.08% |
HSB/HSV | 36° | 50.88% | 88.63% |
CMYK | 0.00% | 20.35% | 50.88% |
11.37% |
HEX | E2 | B4 | 6F |
Decimal | 226 | 180 | 111 |
Binary | 11100010 | 10110100 | 1101111 |
Octal | 342 | 264 | 157 |
Examples of css and html codes for elements with #E2B46F color. Also use rgb(226,180,111) instead hex code.
.myTextColor { color: #E2B46F; }
<p style="color:#E2B46F">This sample text font color is #E2B46F.</p>
This text font color is #E2B46F.
.myBgColor { background-color: #E2B46F; }
<div style="background-color:#E2B46F">Inner text</div>
This div background color is #E2B46F.
.myBorderColor { border: 1px solid #E2B46F; }
<div style="border:3px solid #E2B46F">Div</div>
This div border color is #E2B46F.
.myOpacity80 { color: #E2B46F; opacity: 0.8; }
<p style="color:#E2B46F;opacity:0.8;">80%</p>
Text with #E2B46F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2B46F;}
<p style="text-shadow: 3px 3px 1px #E2B46F">Text here.</p>
This text has shadow with #E2B46F color.
.textShadow {text-shadow: 3px 3px 1px #E2B46F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2B46F, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2B46F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2B46F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2B46F, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2B46F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2B46F; -webkit-box-shadow: 1px 1px 3px 2px #E2B46F; box-shadow: 1px 1px 3px 2px #E2B46F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2B46F; -webkit-box-shadow: 1px 1px 3px 2px #E2B46F; box-shadow:1px 1px 3px 2px #E2B46F;">
Div content here</div>
This text has color #E2B46F on black background.
This text has color #E2B46F on white background.
This text has black color on #E2B46F background.
This text has white color on #E2B46F background.