HEX: #85824C
RGB: (133,130,76)
#85824C contains red, green and blue colors in about the same proportion. Web safe color of #85824C is #999933 (or #993).
#85824C color RGB value is (133,130,76).
RGB: (133,130,76) (52%,51%,30%)
R 133 of 255 = 52%
G 130 of 255 = 51%
B 76 of 255 = 30%
R + G + B ~ 44%. #85824C is middle color (not dark and not light).
R + G + B =
133 + 130 + 76 = 339 (100%)
R 133 of 339 ~ 39.23%
G 130 of 339 ~ 38.35%
B 76 of 339 ~ 22.42%
#85824C color CMYK value is (0,2,43,48).
CMYK: (0,2,43,48) C0M2Y43K48 (0%,2%,43%,48%) (0.00/0.02/0.43/0.48)
85 | 82 | 4C | |
---|---|---|---|
RGB | 133 | 130 | 76 |
HSL | 57° | 27.27% | 40.98% |
HSB/HSV | 57° | 42.86% | 52.16% |
CMYK | 0.00% | 2.26% | 42.86% |
47.84% |
HEX | 85 | 82 | 4C |
Decimal | 133 | 130 | 76 |
Binary | 10000101 | 10000010 | 1001100 |
Octal | 205 | 202 | 114 |
Examples of css and html codes for elements with #85824C color. Also use rgb(133,130,76) instead hex code.
.myTextColor { color: #85824C; }
<p style="color:#85824C">This sample text font color is #85824C.</p>
This text font color is #85824C.
.myBgColor { background-color: #85824C; }
<div style="background-color:#85824C">Inner text</div>
This div background color is #85824C.
.myBorderColor { border: 1px solid #85824C; }
<div style="border:3px solid #85824C">Div</div>
This div border color is #85824C.
.myOpacity80 { color: #85824C; opacity: 0.8; }
<p style="color:#85824C;opacity:0.8;">80%</p>
Text with #85824C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85824C;}
<p style="text-shadow: 3px 3px 1px #85824C">Text here.</p>
This text has shadow with #85824C color.
.textShadow {text-shadow: 3px 3px 1px #85824C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85824C, 5px 5px 20px red">Text here.</p>
This text has shadow with #85824C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85824C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85824C, Direction=45, Strength=4)">Text</p>
This text has shadow with #85824C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85824C; -webkit-box-shadow: 1px 1px 3px 2px #85824C; box-shadow: 1px 1px 3px 2px #85824C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85824C; -webkit-box-shadow: 1px 1px 3px 2px #85824C; box-shadow:1px 1px 3px 2px #85824C;">
Div content here</div>
This text has color #85824C on black background.
This text has color #85824C on white background.
This text has black color on #85824C background.
This text has white color on #85824C background.