HEX: #B4B371
RGB: (180,179,113)
#B4B371 contains mainly red and green colors. Web safe color of #B4B371 is #CC9966 (or #C96).
#B4B371 color RGB value is (180,179,113).
RGB: (180,179,113) (71%,70%,44%)
R 180 of 255 = 71%
G 179 of 255 = 70%
B 113 of 255 = 44%
R + G + B ~ 62%. #B4B371 is quite light color.
R + G + B =
180 + 179 + 113 = 472 (100%)
R 180 of 472 ~ 38.14%
G 179 of 472 ~ 37.92%
B 113 of 472 ~ 23.94%
#B4B371 color CMYK value is (0,1,37,29).
CMYK: (0,1,37,29) C0M1Y37K29 (0%,1%,37%,29%) (0.00/0.01/0.37/0.29)
B4 | B3 | 71 | |
---|---|---|---|
RGB | 180 | 179 | 113 |
HSL | 59° | 30.88% | 57.45% |
HSB/HSV | 59° | 37.22% | 70.59% |
CMYK | 0.00% | 0.56% | 37.22% |
29.41% |
HEX | B4 | B3 | 71 |
Decimal | 180 | 179 | 113 |
Binary | 10110100 | 10110011 | 1110001 |
Octal | 264 | 263 | 161 |
Examples of css and html codes for elements with #B4B371 color. Also use rgb(180,179,113) instead hex code.
.myTextColor { color: #B4B371; }
<p style="color:#B4B371">This sample text font color is #B4B371.</p>
This text font color is #B4B371.
.myBgColor { background-color: #B4B371; }
<div style="background-color:#B4B371">Inner text</div>
This div background color is #B4B371.
.myBorderColor { border: 1px solid #B4B371; }
<div style="border:3px solid #B4B371">Div</div>
This div border color is #B4B371.
.myOpacity80 { color: #B4B371; opacity: 0.8; }
<p style="color:#B4B371;opacity:0.8;">80%</p>
Text with #B4B371 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4B371;}
<p style="text-shadow: 3px 3px 1px #B4B371">Text here.</p>
This text has shadow with #B4B371 color.
.textShadow {text-shadow: 3px 3px 1px #B4B371, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4B371, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4B371 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4B371, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4B371, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4B371 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4B371; -webkit-box-shadow: 1px 1px 3px 2px #B4B371; box-shadow: 1px 1px 3px 2px #B4B371; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4B371; -webkit-box-shadow: 1px 1px 3px 2px #B4B371; box-shadow:1px 1px 3px 2px #B4B371;">
Div content here</div>
This text has color #B4B371 on black background.
This text has color #B4B371 on white background.
This text has black color on #B4B371 background.
This text has white color on #B4B371 background.