HEX: #B49573
RGB: (180,149,115)
#B49573 contains mainly red and green colors. Web safe color of #B49573 is #CC9966 (or #C96).
#B49573 color RGB value is (180,149,115).
RGB: (180,149,115) (71%,58%,45%)
R 180 of 255 = 71%
G 149 of 255 = 58%
B 115 of 255 = 45%
R + G + B ~ 58%. #B49573 is middle color (not dark and not light).
R + G + B =
180 + 149 + 115 = 444 (100%)
R 180 of 444 ~ 40.54%
G 149 of 444 ~ 33.56%
B 115 of 444 ~ 25.9%
#B49573 color CMYK value is (0,17,36,29).
CMYK: (0,17,36,29) C0M17Y36K29 (0%,17%,36%,29%) (0.00/0.17/0.36/0.29)
B4 | 95 | 73 | |
---|---|---|---|
RGB | 180 | 149 | 115 |
HSL | 31° | 30.23% | 57.84% |
HSB/HSV | 31° | 36.11% | 70.59% |
CMYK | 0.00% | 17.22% | 36.11% |
29.41% |
HEX | B4 | 95 | 73 |
Decimal | 180 | 149 | 115 |
Binary | 10110100 | 10010101 | 1110011 |
Octal | 264 | 225 | 163 |
Examples of css and html codes for elements with #B49573 color. Also use rgb(180,149,115) instead hex code.
.myTextColor { color: #B49573; }
<p style="color:#B49573">This sample text font color is #B49573.</p>
This text font color is #B49573.
.myBgColor { background-color: #B49573; }
<div style="background-color:#B49573">Inner text</div>
This div background color is #B49573.
.myBorderColor { border: 1px solid #B49573; }
<div style="border:3px solid #B49573">Div</div>
This div border color is #B49573.
.myOpacity80 { color: #B49573; opacity: 0.8; }
<p style="color:#B49573;opacity:0.8;">80%</p>
Text with #B49573 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B49573;}
<p style="text-shadow: 3px 3px 1px #B49573">Text here.</p>
This text has shadow with #B49573 color.
.textShadow {text-shadow: 3px 3px 1px #B49573, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B49573, 5px 5px 20px red">Text here.</p>
This text has shadow with #B49573 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B49573, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B49573, Direction=45, Strength=4)">Text</p>
This text has shadow with #B49573 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B49573; -webkit-box-shadow: 1px 1px 3px 2px #B49573; box-shadow: 1px 1px 3px 2px #B49573; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B49573; -webkit-box-shadow: 1px 1px 3px 2px #B49573; box-shadow:1px 1px 3px 2px #B49573;">
Div content here</div>
This text has color #B49573 on black background.
This text has color #B49573 on white background.
This text has black color on #B49573 background.
This text has white color on #B49573 background.