HEX: #B49630
RGB: (180,150,48)
#B49630 contains mainly red and green colors. Web safe color of #B49630 is #CC9933 (or #C93).
#B49630 color RGB value is (180,150,48).
RGB: (180,150,48) (71%,59%,19%)
R 180 of 255 = 71%
G 150 of 255 = 59%
B 48 of 255 = 19%
R + G + B ~ 50%. #B49630 is middle color (not dark and not light).
R + G + B =
180 + 150 + 48 = 378 (100%)
R 180 of 378 ~ 47.62%
G 150 of 378 ~ 39.68%
B 48 of 378 ~ 12.7%
#B49630 color CMYK value is (0,17,73,29).
CMYK: (0,17,73,29) C0M17Y73K29 (0%,17%,73%,29%) (0.00/0.17/0.73/0.29)
B4 | 96 | 30 | |
---|---|---|---|
RGB | 180 | 150 | 48 |
HSL | 46° | 57.89% | 44.71% |
HSB/HSV | 46° | 73.33% | 70.59% |
CMYK | 0.00% | 16.67% | 73.33% |
29.41% |
HEX | B4 | 96 | 30 |
Decimal | 180 | 150 | 48 |
Binary | 10110100 | 10010110 | 110000 |
Octal | 264 | 226 | 60 |
Examples of css and html codes for elements with #B49630 color. Also use rgb(180,150,48) instead hex code.
.myTextColor { color: #B49630; }
<p style="color:#B49630">This sample text font color is #B49630.</p>
This text font color is #B49630.
.myBgColor { background-color: #B49630; }
<div style="background-color:#B49630">Inner text</div>
This div background color is #B49630.
.myBorderColor { border: 1px solid #B49630; }
<div style="border:3px solid #B49630">Div</div>
This div border color is #B49630.
.myOpacity80 { color: #B49630; opacity: 0.8; }
<p style="color:#B49630;opacity:0.8;">80%</p>
Text with #B49630 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B49630;}
<p style="text-shadow: 3px 3px 1px #B49630">Text here.</p>
This text has shadow with #B49630 color.
.textShadow {text-shadow: 3px 3px 1px #B49630, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B49630, 5px 5px 20px red">Text here.</p>
This text has shadow with #B49630 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B49630, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B49630, Direction=45, Strength=4)">Text</p>
This text has shadow with #B49630 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B49630; -webkit-box-shadow: 1px 1px 3px 2px #B49630; box-shadow: 1px 1px 3px 2px #B49630; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B49630; -webkit-box-shadow: 1px 1px 3px 2px #B49630; box-shadow:1px 1px 3px 2px #B49630;">
Div content here</div>
This text has color #B49630 on black background.
This text has color #B49630 on white background.
This text has black color on #B49630 background.
This text has white color on #B49630 background.