HEX: #B9B771
RGB: (185,183,113)
#B9B771 contains mainly red and green colors. Web safe color of #B9B771 is #CCCC66 (or #CC6).
#B9B771 color RGB value is (185,183,113).
RGB: (185,183,113) (73%,72%,44%)
R 185 of 255 = 73%
G 183 of 255 = 72%
B 113 of 255 = 44%
R + G + B ~ 63%. #B9B771 is quite light color.
R + G + B =
185 + 183 + 113 = 481 (100%)
R 185 of 481 ~ 38.46%
G 183 of 481 ~ 38.05%
B 113 of 481 ~ 23.49%
#B9B771 color CMYK value is (0,1,39,27).
CMYK: (0,1,39,27) C0M1Y39K27 (0%,1%,39%,27%) (0.00/0.01/0.39/0.27)
B9 | B7 | 71 | |
---|---|---|---|
RGB | 185 | 183 | 113 |
HSL | 58° | 33.96% | 58.43% |
HSB/HSV | 58° | 38.92% | 72.55% |
CMYK | 0.00% | 1.08% | 38.92% |
27.45% |
HEX | B9 | B7 | 71 |
Decimal | 185 | 183 | 113 |
Binary | 10111001 | 10110111 | 1110001 |
Octal | 271 | 267 | 161 |
Examples of css and html codes for elements with #B9B771 color. Also use rgb(185,183,113) instead hex code.
.myTextColor { color: #B9B771; }
<p style="color:#B9B771">This sample text font color is #B9B771.</p>
This text font color is #B9B771.
.myBgColor { background-color: #B9B771; }
<div style="background-color:#B9B771">Inner text</div>
This div background color is #B9B771.
.myBorderColor { border: 1px solid #B9B771; }
<div style="border:3px solid #B9B771">Div</div>
This div border color is #B9B771.
.myOpacity80 { color: #B9B771; opacity: 0.8; }
<p style="color:#B9B771;opacity:0.8;">80%</p>
Text with #B9B771 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9B771;}
<p style="text-shadow: 3px 3px 1px #B9B771">Text here.</p>
This text has shadow with #B9B771 color.
.textShadow {text-shadow: 3px 3px 1px #B9B771, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9B771, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9B771 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9B771, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9B771, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9B771 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9B771; -webkit-box-shadow: 1px 1px 3px 2px #B9B771; box-shadow: 1px 1px 3px 2px #B9B771; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9B771; -webkit-box-shadow: 1px 1px 3px 2px #B9B771; box-shadow:1px 1px 3px 2px #B9B771;">
Div content here</div>
This text has color #B9B771 on black background.
This text has color #B9B771 on white background.
This text has black color on #B9B771 background.
This text has white color on #B9B771 background.