HEX: #B28949
RGB: (178,137,73)
#B28949 contains mainly red and green colors. Web safe color of #B28949 is #999933 (or #993).
#B28949 color RGB value is (178,137,73).
RGB: (178,137,73) (70%,54%,29%)
R 178 of 255 = 70%
G 137 of 255 = 54%
B 73 of 255 = 29%
R + G + B ~ 51%. #B28949 is middle color (not dark and not light).
R + G + B =
178 + 137 + 73 = 388 (100%)
R 178 of 388 ~ 45.88%
G 137 of 388 ~ 35.31%
B 73 of 388 ~ 18.81%
#B28949 color CMYK value is (0,23,59,30).
CMYK: (0,23,59,30) C0M23Y59K30 (0%,23%,59%,30%) (0.00/0.23/0.59/0.30)
B2 | 89 | 49 | |
---|---|---|---|
RGB | 178 | 137 | 73 |
HSL | 37° | 41.83% | 49.22% |
HSB/HSV | 37° | 58.99% | 69.80% |
CMYK | 0.00% | 23.03% | 58.99% |
30.20% |
HEX | B2 | 89 | 49 |
Decimal | 178 | 137 | 73 |
Binary | 10110010 | 10001001 | 1001001 |
Octal | 262 | 211 | 111 |
Examples of css and html codes for elements with #B28949 color. Also use rgb(178,137,73) instead hex code.
.myTextColor { color: #B28949; }
<p style="color:#B28949">This sample text font color is #B28949.</p>
This text font color is #B28949.
.myBgColor { background-color: #B28949; }
<div style="background-color:#B28949">Inner text</div>
This div background color is #B28949.
.myBorderColor { border: 1px solid #B28949; }
<div style="border:3px solid #B28949">Div</div>
This div border color is #B28949.
.myOpacity80 { color: #B28949; opacity: 0.8; }
<p style="color:#B28949;opacity:0.8;">80%</p>
Text with #B28949 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B28949;}
<p style="text-shadow: 3px 3px 1px #B28949">Text here.</p>
This text has shadow with #B28949 color.
.textShadow {text-shadow: 3px 3px 1px #B28949, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B28949, 5px 5px 20px red">Text here.</p>
This text has shadow with #B28949 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B28949, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B28949, Direction=45, Strength=4)">Text</p>
This text has shadow with #B28949 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B28949; -webkit-box-shadow: 1px 1px 3px 2px #B28949; box-shadow: 1px 1px 3px 2px #B28949; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B28949; -webkit-box-shadow: 1px 1px 3px 2px #B28949; box-shadow:1px 1px 3px 2px #B28949;">
Div content here</div>
This text has color #B28949 on black background.
This text has color #B28949 on white background.
This text has black color on #B28949 background.
This text has white color on #B28949 background.