HEX: #B6B537
RGB: (182,181,55)
#B6B537 contains mainly red and green colors. Web safe color of #B6B537 is #CCCC33 (or #CC3).
#B6B537 color RGB value is (182,181,55).
RGB: (182,181,55) (71%,71%,22%)
R 182 of 255 = 71%
G 181 of 255 = 71%
B 55 of 255 = 22%
R + G + B ~ 55%. #B6B537 is middle color (not dark and not light).
R + G + B =
182 + 181 + 55 = 418 (100%)
R 182 of 418 ~ 43.54%
G 181 of 418 ~ 43.3%
B 55 of 418 ~ 13.16%
#B6B537 color CMYK value is (0,1,70,29).
CMYK: (0,1,70,29) C0M1Y70K29 (0%,1%,70%,29%) (0.00/0.01/0.70/0.29)
B6 | B5 | 37 | |
---|---|---|---|
RGB | 182 | 181 | 55 |
HSL | 60° | 53.59% | 46.47% |
HSB/HSV | 60° | 69.78% | 71.37% |
CMYK | 0.00% | 0.55% | 69.78% |
28.63% |
HEX | B6 | B5 | 37 |
Decimal | 182 | 181 | 55 |
Binary | 10110110 | 10110101 | 110111 |
Octal | 266 | 265 | 67 |
Examples of css and html codes for elements with #B6B537 color. Also use rgb(182,181,55) instead hex code.
.myTextColor { color: #B6B537; }
<p style="color:#B6B537">This sample text font color is #B6B537.</p>
This text font color is #B6B537.
.myBgColor { background-color: #B6B537; }
<div style="background-color:#B6B537">Inner text</div>
This div background color is #B6B537.
.myBorderColor { border: 1px solid #B6B537; }
<div style="border:3px solid #B6B537">Div</div>
This div border color is #B6B537.
.myOpacity80 { color: #B6B537; opacity: 0.8; }
<p style="color:#B6B537;opacity:0.8;">80%</p>
Text with #B6B537 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6B537;}
<p style="text-shadow: 3px 3px 1px #B6B537">Text here.</p>
This text has shadow with #B6B537 color.
.textShadow {text-shadow: 3px 3px 1px #B6B537, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6B537, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6B537 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6B537, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6B537, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6B537 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6B537; -webkit-box-shadow: 1px 1px 3px 2px #B6B537; box-shadow: 1px 1px 3px 2px #B6B537; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6B537; -webkit-box-shadow: 1px 1px 3px 2px #B6B537; box-shadow:1px 1px 3px 2px #B6B537;">
Div content here</div>
This text has color #B6B537 on black background.
This text has color #B6B537 on white background.
This text has black color on #B6B537 background.
This text has white color on #B6B537 background.