HEX: #B1843E
RGB: (177,132,62)
#B1843E contains mainly red and green colors. Web safe color of #B1843E is #999933 (or #993).
#B1843E color RGB value is (177,132,62).
RGB: (177,132,62) (69%,52%,24%)
R 177 of 255 = 69%
G 132 of 255 = 52%
B 62 of 255 = 24%
R + G + B ~ 48%. #B1843E is middle color (not dark and not light).
R + G + B =
177 + 132 + 62 = 371 (100%)
R 177 of 371 ~ 47.71%
G 132 of 371 ~ 35.58%
B 62 of 371 ~ 16.71%
#B1843E color CMYK value is (0,25,65,31).
CMYK: (0,25,65,31) C0M25Y65K31 (0%,25%,65%,31%) (0.00/0.25/0.65/0.31)
B1 | 84 | 3E | |
---|---|---|---|
RGB | 177 | 132 | 62 |
HSL | 37° | 48.12% | 46.86% |
HSB/HSV | 37° | 64.97% | 69.41% |
CMYK | 0.00% | 25.42% | 64.97% |
30.59% |
HEX | B1 | 84 | 3E |
Decimal | 177 | 132 | 62 |
Binary | 10110001 | 10000100 | 111110 |
Octal | 261 | 204 | 76 |
Examples of css and html codes for elements with #B1843E color. Also use rgb(177,132,62) instead hex code.
.myTextColor { color: #B1843E; }
<p style="color:#B1843E">This sample text font color is #B1843E.</p>
This text font color is #B1843E.
.myBgColor { background-color: #B1843E; }
<div style="background-color:#B1843E">Inner text</div>
This div background color is #B1843E.
.myBorderColor { border: 1px solid #B1843E; }
<div style="border:3px solid #B1843E">Div</div>
This div border color is #B1843E.
.myOpacity80 { color: #B1843E; opacity: 0.8; }
<p style="color:#B1843E;opacity:0.8;">80%</p>
Text with #B1843E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1843E;}
<p style="text-shadow: 3px 3px 1px #B1843E">Text here.</p>
This text has shadow with #B1843E color.
.textShadow {text-shadow: 3px 3px 1px #B1843E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1843E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1843E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1843E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1843E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1843E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1843E; -webkit-box-shadow: 1px 1px 3px 2px #B1843E; box-shadow: 1px 1px 3px 2px #B1843E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1843E; -webkit-box-shadow: 1px 1px 3px 2px #B1843E; box-shadow:1px 1px 3px 2px #B1843E;">
Div content here</div>
This text has color #B1843E on black background.
This text has color #B1843E on white background.
This text has black color on #B1843E background.
This text has white color on #B1843E background.