HEX: #B4A377
RGB: (180,163,119)
#B4A377 contains mainly red and green colors. Web safe color of #B4A377 is #CC9966 (or #C96).
#B4A377 color RGB value is (180,163,119).
RGB: (180,163,119) (71%,64%,47%)
R 180 of 255 = 71%
G 163 of 255 = 64%
B 119 of 255 = 47%
R + G + B ~ 61%. #B4A377 is quite light color.
R + G + B =
180 + 163 + 119 = 462 (100%)
R 180 of 462 ~ 38.96%
G 163 of 462 ~ 35.28%
B 119 of 462 ~ 25.76%
#B4A377 color CMYK value is (0,9,34,29).
CMYK: (0,9,34,29) C0M9Y34K29 (0%,9%,34%,29%) (0.00/0.09/0.34/0.29)
B4 | A3 | 77 | |
---|---|---|---|
RGB | 180 | 163 | 119 |
HSL | 43° | 28.91% | 58.63% |
HSB/HSV | 43° | 33.89% | 70.59% |
CMYK | 0.00% | 9.44% | 33.89% |
29.41% |
HEX | B4 | A3 | 77 |
Decimal | 180 | 163 | 119 |
Binary | 10110100 | 10100011 | 1110111 |
Octal | 264 | 243 | 167 |
Examples of css and html codes for elements with #B4A377 color. Also use rgb(180,163,119) instead hex code.
.myTextColor { color: #B4A377; }
<p style="color:#B4A377">This sample text font color is #B4A377.</p>
This text font color is #B4A377.
.myBgColor { background-color: #B4A377; }
<div style="background-color:#B4A377">Inner text</div>
This div background color is #B4A377.
.myBorderColor { border: 1px solid #B4A377; }
<div style="border:3px solid #B4A377">Div</div>
This div border color is #B4A377.
.myOpacity80 { color: #B4A377; opacity: 0.8; }
<p style="color:#B4A377;opacity:0.8;">80%</p>
Text with #B4A377 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4A377;}
<p style="text-shadow: 3px 3px 1px #B4A377">Text here.</p>
This text has shadow with #B4A377 color.
.textShadow {text-shadow: 3px 3px 1px #B4A377, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4A377, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4A377 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4A377, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4A377, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4A377 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4A377; -webkit-box-shadow: 1px 1px 3px 2px #B4A377; box-shadow: 1px 1px 3px 2px #B4A377; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4A377; -webkit-box-shadow: 1px 1px 3px 2px #B4A377; box-shadow:1px 1px 3px 2px #B4A377;">
Div content here</div>
This text has color #B4A377 on black background.
This text has color #B4A377 on white background.
This text has black color on #B4A377 background.
This text has white color on #B4A377 background.