HEX: #B4804E
RGB: (180,128,78)
#B4804E contains mainly red and green colors. Web safe color of #B4804E is #CC6666 (or #C66).
#B4804E color RGB value is (180,128,78).
RGB: (180,128,78) (71%,50%,31%)
R 180 of 255 = 71%
G 128 of 255 = 50%
B 78 of 255 = 31%
R + G + B ~ 51%. #B4804E is middle color (not dark and not light).
R + G + B =
180 + 128 + 78 = 386 (100%)
R 180 of 386 ~ 46.63%
G 128 of 386 ~ 33.16%
B 78 of 386 ~ 20.21%
#B4804E color CMYK value is (0,29,57,29).
CMYK: (0,29,57,29) C0M29Y57K29 (0%,29%,57%,29%) (0.00/0.29/0.57/0.29)
B4 | 80 | 4E | |
---|---|---|---|
RGB | 180 | 128 | 78 |
HSL | 29° | 40.48% | 50.59% |
HSB/HSV | 29° | 56.67% | 70.59% |
CMYK | 0.00% | 28.89% | 56.67% |
29.41% |
HEX | B4 | 80 | 4E |
Decimal | 180 | 128 | 78 |
Binary | 10110100 | 10000000 | 1001110 |
Octal | 264 | 200 | 116 |
Examples of css and html codes for elements with #B4804E color. Also use rgb(180,128,78) instead hex code.
.myTextColor { color: #B4804E; }
<p style="color:#B4804E">This sample text font color is #B4804E.</p>
This text font color is #B4804E.
.myBgColor { background-color: #B4804E; }
<div style="background-color:#B4804E">Inner text</div>
This div background color is #B4804E.
.myBorderColor { border: 1px solid #B4804E; }
<div style="border:3px solid #B4804E">Div</div>
This div border color is #B4804E.
.myOpacity80 { color: #B4804E; opacity: 0.8; }
<p style="color:#B4804E;opacity:0.8;">80%</p>
Text with #B4804E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4804E;}
<p style="text-shadow: 3px 3px 1px #B4804E">Text here.</p>
This text has shadow with #B4804E color.
.textShadow {text-shadow: 3px 3px 1px #B4804E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4804E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4804E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4804E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4804E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4804E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4804E; -webkit-box-shadow: 1px 1px 3px 2px #B4804E; box-shadow: 1px 1px 3px 2px #B4804E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4804E; -webkit-box-shadow: 1px 1px 3px 2px #B4804E; box-shadow:1px 1px 3px 2px #B4804E;">
Div content here</div>
This text has color #B4804E on black background.
This text has color #B4804E on white background.
This text has black color on #B4804E background.
This text has white color on #B4804E background.