HEX: #B09C3C
RGB: (176,156,60)
#B09C3C contains mainly red and green colors. Web safe color of #B09C3C is #999933 (or #993).
#B09C3C color RGB value is (176,156,60).
RGB: (176,156,60) (69%,61%,24%)
R 176 of 255 = 69%
G 156 of 255 = 61%
B 60 of 255 = 24%
R + G + B ~ 51%. #B09C3C is middle color (not dark and not light).
R + G + B =
176 + 156 + 60 = 392 (100%)
R 176 of 392 ~ 44.9%
G 156 of 392 ~ 39.8%
B 60 of 392 ~ 15.31%
#B09C3C color CMYK value is (0,11,66,31).
CMYK: (0,11,66,31) C0M11Y66K31 (0%,11%,66%,31%) (0.00/0.11/0.66/0.31)
B0 | 9C | 3C | |
---|---|---|---|
RGB | 176 | 156 | 60 |
HSL | 50° | 49.15% | 46.27% |
HSB/HSV | 50° | 65.91% | 69.02% |
CMYK | 0.00% | 11.36% | 65.91% |
30.98% |
HEX | B0 | 9C | 3C |
Decimal | 176 | 156 | 60 |
Binary | 10110000 | 10011100 | 111100 |
Octal | 260 | 234 | 74 |
Examples of css and html codes for elements with #B09C3C color. Also use rgb(176,156,60) instead hex code.
.myTextColor { color: #B09C3C; }
<p style="color:#B09C3C">This sample text font color is #B09C3C.</p>
This text font color is #B09C3C.
.myBgColor { background-color: #B09C3C; }
<div style="background-color:#B09C3C">Inner text</div>
This div background color is #B09C3C.
.myBorderColor { border: 1px solid #B09C3C; }
<div style="border:3px solid #B09C3C">Div</div>
This div border color is #B09C3C.
.myOpacity80 { color: #B09C3C; opacity: 0.8; }
<p style="color:#B09C3C;opacity:0.8;">80%</p>
Text with #B09C3C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B09C3C;}
<p style="text-shadow: 3px 3px 1px #B09C3C">Text here.</p>
This text has shadow with #B09C3C color.
.textShadow {text-shadow: 3px 3px 1px #B09C3C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B09C3C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B09C3C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B09C3C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B09C3C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B09C3C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B09C3C; -webkit-box-shadow: 1px 1px 3px 2px #B09C3C; box-shadow: 1px 1px 3px 2px #B09C3C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B09C3C; -webkit-box-shadow: 1px 1px 3px 2px #B09C3C; box-shadow:1px 1px 3px 2px #B09C3C;">
Div content here</div>
This text has color #B09C3C on black background.
This text has color #B09C3C on white background.
This text has black color on #B09C3C background.
This text has white color on #B09C3C background.