HEX: #B09A1F
RGB: (176,154,31)
#B09A1F contains mainly red and green colors. Web safe color of #B09A1F is #999933 (or #993).
#B09A1F color RGB value is (176,154,31).
RGB: (176,154,31) (69%,60%,12%)
R 176 of 255 = 69%
G 154 of 255 = 60%
B 31 of 255 = 12%
R + G + B ~ 47%. #B09A1F is middle color (not dark and not light).
R + G + B =
176 + 154 + 31 = 361 (100%)
R 176 of 361 ~ 48.75%
G 154 of 361 ~ 42.66%
B 31 of 361 ~ 8.59%
#B09A1F color CMYK value is (0,13,82,31).
CMYK: (0,13,82,31) C0M13Y82K31 (0%,13%,82%,31%) (0.00/0.13/0.82/0.31)
B0 | 9A | 1F | |
---|---|---|---|
RGB | 176 | 154 | 31 |
HSL | 51° | 70.05% | 40.59% |
HSB/HSV | 51° | 82.39% | 69.02% |
CMYK | 0.00% | 12.50% | 82.39% |
30.98% |
HEX | B0 | 9A | 1F |
Decimal | 176 | 154 | 31 |
Binary | 10110000 | 10011010 | 11111 |
Octal | 260 | 232 | 37 |
Examples of css and html codes for elements with #B09A1F color. Also use rgb(176,154,31) instead hex code.
.myTextColor { color: #B09A1F; }
<p style="color:#B09A1F">This sample text font color is #B09A1F.</p>
This text font color is #B09A1F.
.myBgColor { background-color: #B09A1F; }
<div style="background-color:#B09A1F">Inner text</div>
This div background color is #B09A1F.
.myBorderColor { border: 1px solid #B09A1F; }
<div style="border:3px solid #B09A1F">Div</div>
This div border color is #B09A1F.
.myOpacity80 { color: #B09A1F; opacity: 0.8; }
<p style="color:#B09A1F;opacity:0.8;">80%</p>
Text with #B09A1F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B09A1F;}
<p style="text-shadow: 3px 3px 1px #B09A1F">Text here.</p>
This text has shadow with #B09A1F color.
.textShadow {text-shadow: 3px 3px 1px #B09A1F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B09A1F, 5px 5px 20px red">Text here.</p>
This text has shadow with #B09A1F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B09A1F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B09A1F, Direction=45, Strength=4)">Text</p>
This text has shadow with #B09A1F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B09A1F; -webkit-box-shadow: 1px 1px 3px 2px #B09A1F; box-shadow: 1px 1px 3px 2px #B09A1F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B09A1F; -webkit-box-shadow: 1px 1px 3px 2px #B09A1F; box-shadow:1px 1px 3px 2px #B09A1F;">
Div content here</div>
This text has color #B09A1F on black background.
This text has color #B09A1F on white background.
This text has black color on #B09A1F background.
This text has white color on #B09A1F background.