HEX: #B1A571
RGB: (177,165,113)
#B1A571 contains mainly red and green colors. Web safe color of #B1A571 is #999966 (or #996).
#B1A571 color RGB value is (177,165,113).
RGB: (177,165,113) (69%,65%,44%)
R 177 of 255 = 69%
G 165 of 255 = 65%
B 113 of 255 = 44%
R + G + B ~ 59%. #B1A571 is middle color (not dark and not light).
R + G + B =
177 + 165 + 113 = 455 (100%)
R 177 of 455 ~ 38.9%
G 165 of 455 ~ 36.26%
B 113 of 455 ~ 24.84%
#B1A571 color CMYK value is (0,7,36,31).
CMYK: (0,7,36,31) C0M7Y36K31 (0%,7%,36%,31%) (0.00/0.07/0.36/0.31)
B1 | A5 | 71 | |
---|---|---|---|
RGB | 177 | 165 | 113 |
HSL | 49° | 29.09% | 56.86% |
HSB/HSV | 49° | 36.16% | 69.41% |
CMYK | 0.00% | 6.78% | 36.16% |
30.59% |
HEX | B1 | A5 | 71 |
Decimal | 177 | 165 | 113 |
Binary | 10110001 | 10100101 | 1110001 |
Octal | 261 | 245 | 161 |
Examples of css and html codes for elements with #B1A571 color. Also use rgb(177,165,113) instead hex code.
.myTextColor { color: #B1A571; }
<p style="color:#B1A571">This sample text font color is #B1A571.</p>
This text font color is #B1A571.
.myBgColor { background-color: #B1A571; }
<div style="background-color:#B1A571">Inner text</div>
This div background color is #B1A571.
.myBorderColor { border: 1px solid #B1A571; }
<div style="border:3px solid #B1A571">Div</div>
This div border color is #B1A571.
.myOpacity80 { color: #B1A571; opacity: 0.8; }
<p style="color:#B1A571;opacity:0.8;">80%</p>
Text with #B1A571 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1A571;}
<p style="text-shadow: 3px 3px 1px #B1A571">Text here.</p>
This text has shadow with #B1A571 color.
.textShadow {text-shadow: 3px 3px 1px #B1A571, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1A571, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1A571 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1A571, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1A571, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1A571 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1A571; -webkit-box-shadow: 1px 1px 3px 2px #B1A571; box-shadow: 1px 1px 3px 2px #B1A571; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1A571; -webkit-box-shadow: 1px 1px 3px 2px #B1A571; box-shadow:1px 1px 3px 2px #B1A571;">
Div content here</div>
This text has color #B1A571 on black background.
This text has color #B1A571 on white background.
This text has black color on #B1A571 background.
This text has white color on #B1A571 background.