HEX: #B7A762
RGB: (183,167,98)
#B7A762 contains mainly red and green colors. Web safe color of #B7A762 is #CC9966 (or #C96).
#B7A762 color RGB value is (183,167,98).
RGB: (183,167,98) (72%,65%,38%)
R 183 of 255 = 72%
G 167 of 255 = 65%
B 98 of 255 = 38%
R + G + B ~ 58%. #B7A762 is middle color (not dark and not light).
R + G + B =
183 + 167 + 98 = 448 (100%)
R 183 of 448 ~ 40.85%
G 167 of 448 ~ 37.28%
B 98 of 448 ~ 21.88%
#B7A762 color CMYK value is (0,9,46,28).
CMYK: (0,9,46,28) C0M9Y46K28 (0%,9%,46%,28%) (0.00/0.09/0.46/0.28)
B7 | A7 | 62 | |
---|---|---|---|
RGB | 183 | 167 | 98 |
HSL | 49° | 37.12% | 55.10% |
HSB/HSV | 49° | 46.45% | 71.76% |
CMYK | 0.00% | 8.74% | 46.45% |
28.24% |
HEX | B7 | A7 | 62 |
Decimal | 183 | 167 | 98 |
Binary | 10110111 | 10100111 | 1100010 |
Octal | 267 | 247 | 142 |
Examples of css and html codes for elements with #B7A762 color. Also use rgb(183,167,98) instead hex code.
.myTextColor { color: #B7A762; }
<p style="color:#B7A762">This sample text font color is #B7A762.</p>
This text font color is #B7A762.
.myBgColor { background-color: #B7A762; }
<div style="background-color:#B7A762">Inner text</div>
This div background color is #B7A762.
.myBorderColor { border: 1px solid #B7A762; }
<div style="border:3px solid #B7A762">Div</div>
This div border color is #B7A762.
.myOpacity80 { color: #B7A762; opacity: 0.8; }
<p style="color:#B7A762;opacity:0.8;">80%</p>
Text with #B7A762 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B7A762;}
<p style="text-shadow: 3px 3px 1px #B7A762">Text here.</p>
This text has shadow with #B7A762 color.
.textShadow {text-shadow: 3px 3px 1px #B7A762, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B7A762, 5px 5px 20px red">Text here.</p>
This text has shadow with #B7A762 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B7A762, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B7A762, Direction=45, Strength=4)">Text</p>
This text has shadow with #B7A762 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B7A762; -webkit-box-shadow: 1px 1px 3px 2px #B7A762; box-shadow: 1px 1px 3px 2px #B7A762; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B7A762; -webkit-box-shadow: 1px 1px 3px 2px #B7A762; box-shadow:1px 1px 3px 2px #B7A762;">
Div content here</div>
This text has color #B7A762 on black background.
This text has color #B7A762 on white background.
This text has black color on #B7A762 background.
This text has white color on #B7A762 background.