HEX: #B4A77B
RGB: (180,167,123)
#B4A77B contains red, green and blue colors in about the same proportion. Web safe color of #B4A77B is #CC9966 (or #C96).
#B4A77B color RGB value is (180,167,123).
RGB: (180,167,123) (71%,65%,48%)
R 180 of 255 = 71%
G 167 of 255 = 65%
B 123 of 255 = 48%
R + G + B ~ 61%. #B4A77B is quite light color.
R + G + B =
180 + 167 + 123 = 470 (100%)
R 180 of 470 ~ 38.3%
G 167 of 470 ~ 35.53%
B 123 of 470 ~ 26.17%
#B4A77B color CMYK value is (0,7,32,29).
CMYK: (0,7,32,29) C0M7Y32K29 (0%,7%,32%,29%) (0.00/0.07/0.32/0.29)
B4 | A7 | 7B | |
---|---|---|---|
RGB | 180 | 167 | 123 |
HSL | 46° | 27.54% | 59.41% |
HSB/HSV | 46° | 31.67% | 70.59% |
CMYK | 0.00% | 7.22% | 31.67% |
29.41% |
HEX | B4 | A7 | 7B |
Decimal | 180 | 167 | 123 |
Binary | 10110100 | 10100111 | 1111011 |
Octal | 264 | 247 | 173 |
Examples of css and html codes for elements with #B4A77B color. Also use rgb(180,167,123) instead hex code.
.myTextColor { color: #B4A77B; }
<p style="color:#B4A77B">This sample text font color is #B4A77B.</p>
This text font color is #B4A77B.
.myBgColor { background-color: #B4A77B; }
<div style="background-color:#B4A77B">Inner text</div>
This div background color is #B4A77B.
.myBorderColor { border: 1px solid #B4A77B; }
<div style="border:3px solid #B4A77B">Div</div>
This div border color is #B4A77B.
.myOpacity80 { color: #B4A77B; opacity: 0.8; }
<p style="color:#B4A77B;opacity:0.8;">80%</p>
Text with #B4A77B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4A77B;}
<p style="text-shadow: 3px 3px 1px #B4A77B">Text here.</p>
This text has shadow with #B4A77B color.
.textShadow {text-shadow: 3px 3px 1px #B4A77B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4A77B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4A77B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4A77B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4A77B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4A77B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4A77B; -webkit-box-shadow: 1px 1px 3px 2px #B4A77B; box-shadow: 1px 1px 3px 2px #B4A77B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4A77B; -webkit-box-shadow: 1px 1px 3px 2px #B4A77B; box-shadow:1px 1px 3px 2px #B4A77B;">
Div content here</div>
This text has color #B4A77B on black background.
This text has color #B4A77B on white background.
This text has black color on #B4A77B background.
This text has white color on #B4A77B background.