HEX: #84685F
RGB: (132,104,95)
#84685F contains red, green and blue colors in about the same proportion. Web safe color of #84685F is #996666 (or #966).
#84685F color RGB value is (132,104,95).
RGB: (132,104,95) (52%,41%,37%)
R 132 of 255 = 52%
G 104 of 255 = 41%
B 95 of 255 = 37%
R + G + B ~ 43%. #84685F is middle color (not dark and not light).
R + G + B =
132 + 104 + 95 = 331 (100%)
R 132 of 331 ~ 39.88%
G 104 of 331 ~ 31.42%
B 95 of 331 ~ 28.7%
#84685F color CMYK value is (0,21,28,48).
CMYK: (0,21,28,48) C0M21Y28K48 (0%,21%,28%,48%) (0.00/0.21/0.28/0.48)
84 | 68 | 5F | |
---|---|---|---|
RGB | 132 | 104 | 95 |
HSL | 15° | 16.30% | 44.51% |
HSB/HSV | 15° | 28.03% | 51.76% |
CMYK | 0.00% | 21.21% | 28.03% |
48.24% |
HEX | 84 | 68 | 5F |
Decimal | 132 | 104 | 95 |
Binary | 10000100 | 1101000 | 1011111 |
Octal | 204 | 150 | 137 |
Examples of css and html codes for elements with #84685F color. Also use rgb(132,104,95) instead hex code.
.myTextColor { color: #84685F; }
<p style="color:#84685F">This sample text font color is #84685F.</p>
This text font color is #84685F.
.myBgColor { background-color: #84685F; }
<div style="background-color:#84685F">Inner text</div>
This div background color is #84685F.
.myBorderColor { border: 1px solid #84685F; }
<div style="border:3px solid #84685F">Div</div>
This div border color is #84685F.
.myOpacity80 { color: #84685F; opacity: 0.8; }
<p style="color:#84685F;opacity:0.8;">80%</p>
Text with #84685F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84685F;}
<p style="text-shadow: 3px 3px 1px #84685F">Text here.</p>
This text has shadow with #84685F color.
.textShadow {text-shadow: 3px 3px 1px #84685F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84685F, 5px 5px 20px red">Text here.</p>
This text has shadow with #84685F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84685F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84685F, Direction=45, Strength=4)">Text</p>
This text has shadow with #84685F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84685F; -webkit-box-shadow: 1px 1px 3px 2px #84685F; box-shadow: 1px 1px 3px 2px #84685F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84685F; -webkit-box-shadow: 1px 1px 3px 2px #84685F; box-shadow:1px 1px 3px 2px #84685F;">
Div content here</div>
This text has color #84685F on black background.
This text has color #84685F on white background.
This text has black color on #84685F background.
This text has white color on #84685F background.