HEX: #84736B
RGB: (132,115,107)
#84736B contains red, green and blue colors in about the same proportion. Web safe color of #84736B is #996666 (or #966).
#84736B color RGB value is (132,115,107).
RGB: (132,115,107) (52%,45%,42%)
R 132 of 255 = 52%
G 115 of 255 = 45%
B 107 of 255 = 42%
R + G + B ~ 46%. #84736B is middle color (not dark and not light).
R + G + B =
132 + 115 + 107 = 354 (100%)
R 132 of 354 ~ 37.29%
G 115 of 354 ~ 32.49%
B 107 of 354 ~ 30.23%
#84736B color CMYK value is (0,13,19,48).
CMYK: (0,13,19,48) C0M13Y19K48 (0%,13%,19%,48%) (0.00/0.13/0.19/0.48)
84 | 73 | 6B | |
---|---|---|---|
RGB | 132 | 115 | 107 |
HSL | 19° | 10.46% | 46.86% |
HSB/HSV | 19° | 18.94% | 51.76% |
CMYK | 0.00% | 12.88% | 18.94% |
48.24% |
HEX | 84 | 73 | 6B |
Decimal | 132 | 115 | 107 |
Binary | 10000100 | 1110011 | 1101011 |
Octal | 204 | 163 | 153 |
Examples of css and html codes for elements with #84736B color. Also use rgb(132,115,107) instead hex code.
.myTextColor { color: #84736B; }
<p style="color:#84736B">This sample text font color is #84736B.</p>
This text font color is #84736B.
.myBgColor { background-color: #84736B; }
<div style="background-color:#84736B">Inner text</div>
This div background color is #84736B.
.myBorderColor { border: 1px solid #84736B; }
<div style="border:3px solid #84736B">Div</div>
This div border color is #84736B.
.myOpacity80 { color: #84736B; opacity: 0.8; }
<p style="color:#84736B;opacity:0.8;">80%</p>
Text with #84736B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84736B;}
<p style="text-shadow: 3px 3px 1px #84736B">Text here.</p>
This text has shadow with #84736B color.
.textShadow {text-shadow: 3px 3px 1px #84736B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84736B, 5px 5px 20px red">Text here.</p>
This text has shadow with #84736B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84736B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84736B, Direction=45, Strength=4)">Text</p>
This text has shadow with #84736B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84736B; -webkit-box-shadow: 1px 1px 3px 2px #84736B; box-shadow: 1px 1px 3px 2px #84736B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84736B; -webkit-box-shadow: 1px 1px 3px 2px #84736B; box-shadow:1px 1px 3px 2px #84736B;">
Div content here</div>
This text has color #84736B on black background.
This text has color #84736B on white background.
This text has black color on #84736B background.
This text has white color on #84736B background.