HEX: #84836E
RGB: (132,131,110)
#84836E contains red, green and blue colors in about the same proportion. Web safe color of #84836E is #999966 (or #996).
#84836E color RGB value is (132,131,110).
RGB: (132,131,110) (52%,51%,43%)
R 132 of 255 = 52%
G 131 of 255 = 51%
B 110 of 255 = 43%
R + G + B ~ 49%. #84836E is middle color (not dark and not light).
R + G + B =
132 + 131 + 110 = 373 (100%)
R 132 of 373 ~ 35.39%
G 131 of 373 ~ 35.12%
B 110 of 373 ~ 29.49%
#84836E color CMYK value is (0,1,17,48).
CMYK: (0,1,17,48) C0M1Y17K48 (0%,1%,17%,48%) (0.00/0.01/0.17/0.48)
84 | 83 | 6E | |
---|---|---|---|
RGB | 132 | 131 | 110 |
HSL | 57° | 9.09% | 47.45% |
HSB/HSV | 57° | 16.67% | 51.76% |
CMYK | 0.00% | 0.76% | 16.67% |
48.24% |
HEX | 84 | 83 | 6E |
Decimal | 132 | 131 | 110 |
Binary | 10000100 | 10000011 | 1101110 |
Octal | 204 | 203 | 156 |
Examples of css and html codes for elements with #84836E color. Also use rgb(132,131,110) instead hex code.
.myTextColor { color: #84836E; }
<p style="color:#84836E">This sample text font color is #84836E.</p>
This text font color is #84836E.
.myBgColor { background-color: #84836E; }
<div style="background-color:#84836E">Inner text</div>
This div background color is #84836E.
.myBorderColor { border: 1px solid #84836E; }
<div style="border:3px solid #84836E">Div</div>
This div border color is #84836E.
.myOpacity80 { color: #84836E; opacity: 0.8; }
<p style="color:#84836E;opacity:0.8;">80%</p>
Text with #84836E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84836E;}
<p style="text-shadow: 3px 3px 1px #84836E">Text here.</p>
This text has shadow with #84836E color.
.textShadow {text-shadow: 3px 3px 1px #84836E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84836E, 5px 5px 20px red">Text here.</p>
This text has shadow with #84836E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84836E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84836E, Direction=45, Strength=4)">Text</p>
This text has shadow with #84836E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84836E; -webkit-box-shadow: 1px 1px 3px 2px #84836E; box-shadow: 1px 1px 3px 2px #84836E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84836E; -webkit-box-shadow: 1px 1px 3px 2px #84836E; box-shadow:1px 1px 3px 2px #84836E;">
Div content here</div>
This text has color #84836E on black background.
This text has color #84836E on white background.
This text has black color on #84836E background.
This text has white color on #84836E background.