HEX: #B4A770
RGB: (180,167,112)
#B4A770 contains mainly red and green colors. Web safe color of #B4A770 is #CC9966 (or #C96).
#B4A770 color RGB value is (180,167,112).
RGB: (180,167,112) (71%,65%,44%)
R 180 of 255 = 71%
G 167 of 255 = 65%
B 112 of 255 = 44%
R + G + B ~ 60%. #B4A770 is middle color (not dark and not light).
R + G + B =
180 + 167 + 112 = 459 (100%)
R 180 of 459 ~ 39.22%
G 167 of 459 ~ 36.38%
B 112 of 459 ~ 24.4%
#B4A770 color CMYK value is (0,7,38,29).
CMYK: (0,7,38,29) C0M7Y38K29 (0%,7%,38%,29%) (0.00/0.07/0.38/0.29)
B4 | A7 | 70 | |
---|---|---|---|
RGB | 180 | 167 | 112 |
HSL | 49° | 31.19% | 57.25% |
HSB/HSV | 49° | 37.78% | 70.59% |
CMYK | 0.00% | 7.22% | 37.78% |
29.41% |
HEX | B4 | A7 | 70 |
Decimal | 180 | 167 | 112 |
Binary | 10110100 | 10100111 | 1110000 |
Octal | 264 | 247 | 160 |
Examples of css and html codes for elements with #B4A770 color. Also use rgb(180,167,112) instead hex code.
.myTextColor { color: #B4A770; }
<p style="color:#B4A770">This sample text font color is #B4A770.</p>
This text font color is #B4A770.
.myBgColor { background-color: #B4A770; }
<div style="background-color:#B4A770">Inner text</div>
This div background color is #B4A770.
.myBorderColor { border: 1px solid #B4A770; }
<div style="border:3px solid #B4A770">Div</div>
This div border color is #B4A770.
.myOpacity80 { color: #B4A770; opacity: 0.8; }
<p style="color:#B4A770;opacity:0.8;">80%</p>
Text with #B4A770 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4A770;}
<p style="text-shadow: 3px 3px 1px #B4A770">Text here.</p>
This text has shadow with #B4A770 color.
.textShadow {text-shadow: 3px 3px 1px #B4A770, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4A770, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4A770 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4A770, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4A770, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4A770 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4A770; -webkit-box-shadow: 1px 1px 3px 2px #B4A770; box-shadow: 1px 1px 3px 2px #B4A770; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4A770; -webkit-box-shadow: 1px 1px 3px 2px #B4A770; box-shadow:1px 1px 3px 2px #B4A770;">
Div content here</div>
This text has color #B4A770 on black background.
This text has color #B4A770 on white background.
This text has black color on #B4A770 background.
This text has white color on #B4A770 background.