HEX: #B9A75B
RGB: (185,167,91)
#B9A75B contains mainly red and green colors. Web safe color of #B9A75B is #CC9966 (or #C96).
#B9A75B color RGB value is (185,167,91).
RGB: (185,167,91) (73%,65%,36%)
R 185 of 255 = 73%
G 167 of 255 = 65%
B 91 of 255 = 36%
R + G + B ~ 58%. #B9A75B is middle color (not dark and not light).
R + G + B =
185 + 167 + 91 = 443 (100%)
R 185 of 443 ~ 41.76%
G 167 of 443 ~ 37.7%
B 91 of 443 ~ 20.54%
#B9A75B color CMYK value is (0,10,51,27).
CMYK: (0,10,51,27) C0M10Y51K27 (0%,10%,51%,27%) (0.00/0.10/0.51/0.27)
B9 | A7 | 5B | |
---|---|---|---|
RGB | 185 | 167 | 91 |
HSL | 49° | 40.17% | 54.12% |
HSB/HSV | 49° | 50.81% | 72.55% |
CMYK | 0.00% | 9.73% | 50.81% |
27.45% |
HEX | B9 | A7 | 5B |
Decimal | 185 | 167 | 91 |
Binary | 10111001 | 10100111 | 1011011 |
Octal | 271 | 247 | 133 |
Examples of css and html codes for elements with #B9A75B color. Also use rgb(185,167,91) instead hex code.
.myTextColor { color: #B9A75B; }
<p style="color:#B9A75B">This sample text font color is #B9A75B.</p>
This text font color is #B9A75B.
.myBgColor { background-color: #B9A75B; }
<div style="background-color:#B9A75B">Inner text</div>
This div background color is #B9A75B.
.myBorderColor { border: 1px solid #B9A75B; }
<div style="border:3px solid #B9A75B">Div</div>
This div border color is #B9A75B.
.myOpacity80 { color: #B9A75B; opacity: 0.8; }
<p style="color:#B9A75B;opacity:0.8;">80%</p>
Text with #B9A75B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9A75B;}
<p style="text-shadow: 3px 3px 1px #B9A75B">Text here.</p>
This text has shadow with #B9A75B color.
.textShadow {text-shadow: 3px 3px 1px #B9A75B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9A75B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9A75B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9A75B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9A75B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9A75B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9A75B; -webkit-box-shadow: 1px 1px 3px 2px #B9A75B; box-shadow: 1px 1px 3px 2px #B9A75B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9A75B; -webkit-box-shadow: 1px 1px 3px 2px #B9A75B; box-shadow:1px 1px 3px 2px #B9A75B;">
Div content here</div>
This text has color #B9A75B on black background.
This text has color #B9A75B on white background.
This text has black color on #B9A75B background.
This text has white color on #B9A75B background.