HEX: #85836C
RGB: (133,131,108)
#85836C contains red, green and blue colors in about the same proportion. Web safe color of #85836C is #999966 (or #996).
#85836C color RGB value is (133,131,108).
RGB: (133,131,108) (52%,51%,42%)
R 133 of 255 = 52%
G 131 of 255 = 51%
B 108 of 255 = 42%
R + G + B ~ 48%. #85836C is middle color (not dark and not light).
R + G + B =
133 + 131 + 108 = 372 (100%)
R 133 of 372 ~ 35.75%
G 131 of 372 ~ 35.22%
B 108 of 372 ~ 29.03%
#85836C color CMYK value is (0,2,19,48).
CMYK: (0,2,19,48) C0M2Y19K48 (0%,2%,19%,48%) (0.00/0.02/0.19/0.48)
85 | 83 | 6C | |
---|---|---|---|
RGB | 133 | 131 | 108 |
HSL | 55° | 10.37% | 47.25% |
HSB/HSV | 55° | 18.80% | 52.16% |
CMYK | 0.00% | 1.50% | 18.80% |
47.84% |
HEX | 85 | 83 | 6C |
Decimal | 133 | 131 | 108 |
Binary | 10000101 | 10000011 | 1101100 |
Octal | 205 | 203 | 154 |
Examples of css and html codes for elements with #85836C color. Also use rgb(133,131,108) instead hex code.
.myTextColor { color: #85836C; }
<p style="color:#85836C">This sample text font color is #85836C.</p>
This text font color is #85836C.
.myBgColor { background-color: #85836C; }
<div style="background-color:#85836C">Inner text</div>
This div background color is #85836C.
.myBorderColor { border: 1px solid #85836C; }
<div style="border:3px solid #85836C">Div</div>
This div border color is #85836C.
.myOpacity80 { color: #85836C; opacity: 0.8; }
<p style="color:#85836C;opacity:0.8;">80%</p>
Text with #85836C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85836C;}
<p style="text-shadow: 3px 3px 1px #85836C">Text here.</p>
This text has shadow with #85836C color.
.textShadow {text-shadow: 3px 3px 1px #85836C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85836C, 5px 5px 20px red">Text here.</p>
This text has shadow with #85836C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85836C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85836C, Direction=45, Strength=4)">Text</p>
This text has shadow with #85836C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85836C; -webkit-box-shadow: 1px 1px 3px 2px #85836C; box-shadow: 1px 1px 3px 2px #85836C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85836C; -webkit-box-shadow: 1px 1px 3px 2px #85836C; box-shadow:1px 1px 3px 2px #85836C;">
Div content here</div>
This text has color #85836C on black background.
This text has color #85836C on white background.
This text has black color on #85836C background.
This text has white color on #85836C background.