HEX: #E5BBAA
RGB: (229,187,170)
#E5BBAA contains red, green and blue colors in about the same proportion. Web safe color of #E5BBAA is #CCCC99 (or #CC9).
#E5BBAA color RGB value is (229,187,170).
RGB: (229,187,170) (90%,73%,67%)
R 229 of 255 = 90%
G 187 of 255 = 73%
B 170 of 255 = 67%
R + G + B ~ 77%. #E5BBAA is quite light color.
R + G + B =
229 + 187 + 170 = 586 (100%)
R 229 of 586 ~ 39.08%
G 187 of 586 ~ 31.91%
B 170 of 586 ~ 29.01%
#E5BBAA color CMYK value is (0,18,26,10).
CMYK: (0,18,26,10) C0M18Y26K10 (0%,18%,26%,10%) (0.00/0.18/0.26/0.10)
E5 | BB | AA | |
---|---|---|---|
RGB | 229 | 187 | 170 |
HSL | 17° | 53.15% | 78.24% |
HSB/HSV | 17° | 25.76% | 89.80% |
CMYK | 0.00% | 18.34% | 25.76% |
10.20% |
HEX | E5 | BB | AA |
Decimal | 229 | 187 | 170 |
Binary | 11100101 | 10111011 | 10101010 |
Octal | 345 | 273 | 252 |
Examples of css and html codes for elements with #E5BBAA color. Also use rgb(229,187,170) instead hex code.
.myTextColor { color: #E5BBAA; }
<p style="color:#E5BBAA">This sample text font color is #E5BBAA.</p>
This text font color is #E5BBAA.
.myBgColor { background-color: #E5BBAA; }
<div style="background-color:#E5BBAA">Inner text</div>
This div background color is #E5BBAA.
.myBorderColor { border: 1px solid #E5BBAA; }
<div style="border:3px solid #E5BBAA">Div</div>
This div border color is #E5BBAA.
.myOpacity80 { color: #E5BBAA; opacity: 0.8; }
<p style="color:#E5BBAA;opacity:0.8;">80%</p>
Text with #E5BBAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5BBAA;}
<p style="text-shadow: 3px 3px 1px #E5BBAA">Text here.</p>
This text has shadow with #E5BBAA color.
.textShadow {text-shadow: 3px 3px 1px #E5BBAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5BBAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5BBAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5BBAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5BBAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5BBAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5BBAA; -webkit-box-shadow: 1px 1px 3px 2px #E5BBAA; box-shadow: 1px 1px 3px 2px #E5BBAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5BBAA; -webkit-box-shadow: 1px 1px 3px 2px #E5BBAA; box-shadow:1px 1px 3px 2px #E5BBAA;">
Div content here</div>
This text has color #E5BBAA on black background.
This text has color #E5BBAA on white background.
This text has black color on #E5BBAA background.
This text has white color on #E5BBAA background.