HEX: #E5B96F
RGB: (229,185,111)
#E5B96F contains mainly red and green colors. Web safe color of #E5B96F is #CCCC66 (or #CC6).
#E5B96F color RGB value is (229,185,111).
RGB: (229,185,111) (90%,73%,44%)
R 229 of 255 = 90%
G 185 of 255 = 73%
B 111 of 255 = 44%
R + G + B ~ 69%. #E5B96F is quite light color.
R + G + B =
229 + 185 + 111 = 525 (100%)
R 229 of 525 ~ 43.62%
G 185 of 525 ~ 35.24%
B 111 of 525 ~ 21.14%
#E5B96F color CMYK value is (0,19,52,10).
CMYK: (0,19,52,10) C0M19Y52K10 (0%,19%,52%,10%) (0.00/0.19/0.52/0.10)
E5 | B9 | 6F | |
---|---|---|---|
RGB | 229 | 185 | 111 |
HSL | 38° | 69.41% | 66.67% |
HSB/HSV | 38° | 51.53% | 89.80% |
CMYK | 0.00% | 19.21% | 51.53% |
10.20% |
HEX | E5 | B9 | 6F |
Decimal | 229 | 185 | 111 |
Binary | 11100101 | 10111001 | 1101111 |
Octal | 345 | 271 | 157 |
Examples of css and html codes for elements with #E5B96F color. Also use rgb(229,185,111) instead hex code.
.myTextColor { color: #E5B96F; }
<p style="color:#E5B96F">This sample text font color is #E5B96F.</p>
This text font color is #E5B96F.
.myBgColor { background-color: #E5B96F; }
<div style="background-color:#E5B96F">Inner text</div>
This div background color is #E5B96F.
.myBorderColor { border: 1px solid #E5B96F; }
<div style="border:3px solid #E5B96F">Div</div>
This div border color is #E5B96F.
.myOpacity80 { color: #E5B96F; opacity: 0.8; }
<p style="color:#E5B96F;opacity:0.8;">80%</p>
Text with #E5B96F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5B96F;}
<p style="text-shadow: 3px 3px 1px #E5B96F">Text here.</p>
This text has shadow with #E5B96F color.
.textShadow {text-shadow: 3px 3px 1px #E5B96F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5B96F, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5B96F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5B96F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5B96F, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5B96F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5B96F; -webkit-box-shadow: 1px 1px 3px 2px #E5B96F; box-shadow: 1px 1px 3px 2px #E5B96F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5B96F; -webkit-box-shadow: 1px 1px 3px 2px #E5B96F; box-shadow:1px 1px 3px 2px #E5B96F;">
Div content here</div>
This text has color #E5B96F on black background.
This text has color #E5B96F on white background.
This text has black color on #E5B96F background.
This text has white color on #E5B96F background.