HEX: #B5A473
RGB: (181,164,115)
#B5A473 contains mainly red and green colors. Web safe color of #B5A473 is #CC9966 (or #C96).
#B5A473 color RGB value is (181,164,115).
RGB: (181,164,115) (71%,64%,45%)
R 181 of 255 = 71%
G 164 of 255 = 64%
B 115 of 255 = 45%
R + G + B ~ 60%. #B5A473 is middle color (not dark and not light).
R + G + B =
181 + 164 + 115 = 460 (100%)
R 181 of 460 ~ 39.35%
G 164 of 460 ~ 35.65%
B 115 of 460 ~ 25%
#B5A473 color CMYK value is (0,9,36,29).
CMYK: (0,9,36,29) C0M9Y36K29 (0%,9%,36%,29%) (0.00/0.09/0.36/0.29)
B5 | A4 | 73 | |
---|---|---|---|
RGB | 181 | 164 | 115 |
HSL | 45° | 30.84% | 58.04% |
HSB/HSV | 45° | 36.46% | 70.98% |
CMYK | 0.00% | 9.39% | 36.46% |
29.02% |
HEX | B5 | A4 | 73 |
Decimal | 181 | 164 | 115 |
Binary | 10110101 | 10100100 | 1110011 |
Octal | 265 | 244 | 163 |
Examples of css and html codes for elements with #B5A473 color. Also use rgb(181,164,115) instead hex code.
.myTextColor { color: #B5A473; }
<p style="color:#B5A473">This sample text font color is #B5A473.</p>
This text font color is #B5A473.
.myBgColor { background-color: #B5A473; }
<div style="background-color:#B5A473">Inner text</div>
This div background color is #B5A473.
.myBorderColor { border: 1px solid #B5A473; }
<div style="border:3px solid #B5A473">Div</div>
This div border color is #B5A473.
.myOpacity80 { color: #B5A473; opacity: 0.8; }
<p style="color:#B5A473;opacity:0.8;">80%</p>
Text with #B5A473 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5A473;}
<p style="text-shadow: 3px 3px 1px #B5A473">Text here.</p>
This text has shadow with #B5A473 color.
.textShadow {text-shadow: 3px 3px 1px #B5A473, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5A473, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5A473 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5A473, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5A473, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5A473 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5A473; -webkit-box-shadow: 1px 1px 3px 2px #B5A473; box-shadow: 1px 1px 3px 2px #B5A473; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5A473; -webkit-box-shadow: 1px 1px 3px 2px #B5A473; box-shadow:1px 1px 3px 2px #B5A473;">
Div content here</div>
This text has color #B5A473 on black background.
This text has color #B5A473 on white background.
This text has black color on #B5A473 background.
This text has white color on #B5A473 background.