HEX: #E9BE96
RGB: (233,190,150)
#E9BE96 contains mainly red and green colors. Web safe color of #E9BE96 is #FFCC99 (or #FC9).
#E9BE96 color RGB value is (233,190,150).
RGB: (233,190,150) (91%,75%,59%)
R 233 of 255 = 91%
G 190 of 255 = 75%
B 150 of 255 = 59%
R + G + B ~ 75%. #E9BE96 is quite light color.
R + G + B =
233 + 190 + 150 = 573 (100%)
R 233 of 573 ~ 40.66%
G 190 of 573 ~ 33.16%
B 150 of 573 ~ 26.18%
#E9BE96 color CMYK value is (0,18,36,9).
CMYK: (0,18,36,9) C0M18Y36K9 (0%,18%,36%,9%) (0.00/0.18/0.36/0.09)
E9 | BE | 96 | |
---|---|---|---|
RGB | 233 | 190 | 150 |
HSL | 29° | 65.35% | 75.10% |
HSB/HSV | 29° | 35.62% | 91.37% |
CMYK | 0.00% | 18.45% | 35.62% |
8.63% |
HEX | E9 | BE | 96 |
Decimal | 233 | 190 | 150 |
Binary | 11101001 | 10111110 | 10010110 |
Octal | 351 | 276 | 226 |
Examples of css and html codes for elements with #E9BE96 color. Also use rgb(233,190,150) instead hex code.
.myTextColor { color: #E9BE96; }
<p style="color:#E9BE96">This sample text font color is #E9BE96.</p>
This text font color is #E9BE96.
.myBgColor { background-color: #E9BE96; }
<div style="background-color:#E9BE96">Inner text</div>
This div background color is #E9BE96.
.myBorderColor { border: 1px solid #E9BE96; }
<div style="border:3px solid #E9BE96">Div</div>
This div border color is #E9BE96.
.myOpacity80 { color: #E9BE96; opacity: 0.8; }
<p style="color:#E9BE96;opacity:0.8;">80%</p>
Text with #E9BE96 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9BE96;}
<p style="text-shadow: 3px 3px 1px #E9BE96">Text here.</p>
This text has shadow with #E9BE96 color.
.textShadow {text-shadow: 3px 3px 1px #E9BE96, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9BE96, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9BE96 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9BE96, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9BE96, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9BE96 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9BE96; -webkit-box-shadow: 1px 1px 3px 2px #E9BE96; box-shadow: 1px 1px 3px 2px #E9BE96; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9BE96; -webkit-box-shadow: 1px 1px 3px 2px #E9BE96; box-shadow:1px 1px 3px 2px #E9BE96;">
Div content here</div>
This text has color #E9BE96 on black background.
This text has color #E9BE96 on white background.
This text has black color on #E9BE96 background.
This text has white color on #E9BE96 background.