HEX: #B5A081
RGB: (181,160,129)
#B5A081 contains red, green and blue colors in about the same proportion. Web safe color of #B5A081 is #CC9999 (or #C99).
#B5A081 color RGB value is (181,160,129).
RGB: (181,160,129) (71%,63%,51%)
R 181 of 255 = 71%
G 160 of 255 = 63%
B 129 of 255 = 51%
R + G + B ~ 62%. #B5A081 is quite light color.
R + G + B =
181 + 160 + 129 = 470 (100%)
R 181 of 470 ~ 38.51%
G 160 of 470 ~ 34.04%
B 129 of 470 ~ 27.45%
#B5A081 color CMYK value is (0,12,29,29).
CMYK: (0,12,29,29) C0M12Y29K29 (0%,12%,29%,29%) (0.00/0.12/0.29/0.29)
B5 | A0 | 81 | |
---|---|---|---|
RGB | 181 | 160 | 129 |
HSL | 36° | 26.00% | 60.78% |
HSB/HSV | 36° | 28.73% | 70.98% |
CMYK | 0.00% | 11.60% | 28.73% |
29.02% |
HEX | B5 | A0 | 81 |
Decimal | 181 | 160 | 129 |
Binary | 10110101 | 10100000 | 10000001 |
Octal | 265 | 240 | 201 |
Examples of css and html codes for elements with #B5A081 color. Also use rgb(181,160,129) instead hex code.
.myTextColor { color: #B5A081; }
<p style="color:#B5A081">This sample text font color is #B5A081.</p>
This text font color is #B5A081.
.myBgColor { background-color: #B5A081; }
<div style="background-color:#B5A081">Inner text</div>
This div background color is #B5A081.
.myBorderColor { border: 1px solid #B5A081; }
<div style="border:3px solid #B5A081">Div</div>
This div border color is #B5A081.
.myOpacity80 { color: #B5A081; opacity: 0.8; }
<p style="color:#B5A081;opacity:0.8;">80%</p>
Text with #B5A081 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5A081;}
<p style="text-shadow: 3px 3px 1px #B5A081">Text here.</p>
This text has shadow with #B5A081 color.
.textShadow {text-shadow: 3px 3px 1px #B5A081, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5A081, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5A081 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5A081, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5A081, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5A081 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5A081; -webkit-box-shadow: 1px 1px 3px 2px #B5A081; box-shadow: 1px 1px 3px 2px #B5A081; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5A081; -webkit-box-shadow: 1px 1px 3px 2px #B5A081; box-shadow:1px 1px 3px 2px #B5A081;">
Div content here</div>
This text has color #B5A081 on black background.
This text has color #B5A081 on white background.
This text has black color on #B5A081 background.
This text has white color on #B5A081 background.