HEX: #85684E
RGB: (133,104,78)
#85684E contains red, green and blue colors in about the same proportion. Web safe color of #85684E is #996666 (or #966).
#85684E color RGB value is (133,104,78).
RGB: (133,104,78) (52%,41%,31%)
R 133 of 255 = 52%
G 104 of 255 = 41%
B 78 of 255 = 31%
R + G + B ~ 41%. #85684E is middle color (not dark and not light).
R + G + B =
133 + 104 + 78 = 315 (100%)
R 133 of 315 ~ 42.22%
G 104 of 315 ~ 33.02%
B 78 of 315 ~ 24.76%
#85684E color CMYK value is (0,22,41,48).
CMYK: (0,22,41,48) C0M22Y41K48 (0%,22%,41%,48%) (0.00/0.22/0.41/0.48)
85 | 68 | 4E | |
---|---|---|---|
RGB | 133 | 104 | 78 |
HSL | 28° | 26.07% | 41.37% |
HSB/HSV | 28° | 41.35% | 52.16% |
CMYK | 0.00% | 21.80% | 41.35% |
47.84% |
HEX | 85 | 68 | 4E |
Decimal | 133 | 104 | 78 |
Binary | 10000101 | 1101000 | 1001110 |
Octal | 205 | 150 | 116 |
Examples of css and html codes for elements with #85684E color. Also use rgb(133,104,78) instead hex code.
.myTextColor { color: #85684E; }
<p style="color:#85684E">This sample text font color is #85684E.</p>
This text font color is #85684E.
.myBgColor { background-color: #85684E; }
<div style="background-color:#85684E">Inner text</div>
This div background color is #85684E.
.myBorderColor { border: 1px solid #85684E; }
<div style="border:3px solid #85684E">Div</div>
This div border color is #85684E.
.myOpacity80 { color: #85684E; opacity: 0.8; }
<p style="color:#85684E;opacity:0.8;">80%</p>
Text with #85684E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85684E;}
<p style="text-shadow: 3px 3px 1px #85684E">Text here.</p>
This text has shadow with #85684E color.
.textShadow {text-shadow: 3px 3px 1px #85684E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85684E, 5px 5px 20px red">Text here.</p>
This text has shadow with #85684E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85684E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85684E, Direction=45, Strength=4)">Text</p>
This text has shadow with #85684E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85684E; -webkit-box-shadow: 1px 1px 3px 2px #85684E; box-shadow: 1px 1px 3px 2px #85684E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85684E; -webkit-box-shadow: 1px 1px 3px 2px #85684E; box-shadow:1px 1px 3px 2px #85684E;">
Div content here</div>
This text has color #85684E on black background.
This text has color #85684E on white background.
This text has black color on #85684E background.
This text has white color on #85684E background.