HEX: #B09E1A
RGB: (176,158,26)
#B09E1A contains mainly red and green colors. Web safe color of #B09E1A is #999900 (or #990).
#B09E1A color RGB value is (176,158,26).
RGB: (176,158,26) (69%,62%,10%)
R 176 of 255 = 69%
G 158 of 255 = 62%
B 26 of 255 = 10%
R + G + B ~ 47%. #B09E1A is middle color (not dark and not light).
R + G + B =
176 + 158 + 26 = 360 (100%)
R 176 of 360 ~ 48.89%
G 158 of 360 ~ 43.89%
B 26 of 360 ~ 7.22%
#B09E1A color CMYK value is (0,10,85,31).
CMYK: (0,10,85,31) C0M10Y85K31 (0%,10%,85%,31%) (0.00/0.10/0.85/0.31)
B0 | 9E | 1A | |
---|---|---|---|
RGB | 176 | 158 | 26 |
HSL | 53° | 74.26% | 39.61% |
HSB/HSV | 53° | 85.23% | 69.02% |
CMYK | 0.00% | 10.23% | 85.23% |
30.98% |
HEX | B0 | 9E | 1A |
Decimal | 176 | 158 | 26 |
Binary | 10110000 | 10011110 | 11010 |
Octal | 260 | 236 | 32 |
Examples of css and html codes for elements with #B09E1A color. Also use rgb(176,158,26) instead hex code.
.myTextColor { color: #B09E1A; }
<p style="color:#B09E1A">This sample text font color is #B09E1A.</p>
This text font color is #B09E1A.
.myBgColor { background-color: #B09E1A; }
<div style="background-color:#B09E1A">Inner text</div>
This div background color is #B09E1A.
.myBorderColor { border: 1px solid #B09E1A; }
<div style="border:3px solid #B09E1A">Div</div>
This div border color is #B09E1A.
.myOpacity80 { color: #B09E1A; opacity: 0.8; }
<p style="color:#B09E1A;opacity:0.8;">80%</p>
Text with #B09E1A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B09E1A;}
<p style="text-shadow: 3px 3px 1px #B09E1A">Text here.</p>
This text has shadow with #B09E1A color.
.textShadow {text-shadow: 3px 3px 1px #B09E1A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B09E1A, 5px 5px 20px red">Text here.</p>
This text has shadow with #B09E1A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B09E1A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B09E1A, Direction=45, Strength=4)">Text</p>
This text has shadow with #B09E1A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B09E1A; -webkit-box-shadow: 1px 1px 3px 2px #B09E1A; box-shadow: 1px 1px 3px 2px #B09E1A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B09E1A; -webkit-box-shadow: 1px 1px 3px 2px #B09E1A; box-shadow:1px 1px 3px 2px #B09E1A;">
Div content here</div>
This text has color #B09E1A on black background.
This text has color #B09E1A on white background.
This text has black color on #B09E1A background.
This text has white color on #B09E1A background.