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