HEX: #87765E
RGB: (135,118,94)
#87765E contains red, green and blue colors in about the same proportion. Web safe color of #87765E is #996666 (or #966).
#87765E color RGB value is (135,118,94).
RGB: (135,118,94) (53%,46%,37%)
R 135 of 255 = 53%
G 118 of 255 = 46%
B 94 of 255 = 37%
R + G + B ~ 45%. #87765E is middle color (not dark and not light).
R + G + B =
135 + 118 + 94 = 347 (100%)
R 135 of 347 ~ 38.9%
G 118 of 347 ~ 34.01%
B 94 of 347 ~ 27.09%
#87765E color CMYK value is (0,13,30,47).
CMYK: (0,13,30,47) C0M13Y30K47 (0%,13%,30%,47%) (0.00/0.13/0.30/0.47)
87 | 76 | 5E | |
---|---|---|---|
RGB | 135 | 118 | 94 |
HSL | 35° | 17.90% | 44.90% |
HSB/HSV | 35° | 30.37% | 52.94% |
CMYK | 0.00% | 12.59% | 30.37% |
47.06% |
HEX | 87 | 76 | 5E |
Decimal | 135 | 118 | 94 |
Binary | 10000111 | 1110110 | 1011110 |
Octal | 207 | 166 | 136 |
Examples of css and html codes for elements with #87765E color. Also use rgb(135,118,94) instead hex code.
.myTextColor { color: #87765E; }
<p style="color:#87765E">This sample text font color is #87765E.</p>
This text font color is #87765E.
.myBgColor { background-color: #87765E; }
<div style="background-color:#87765E">Inner text</div>
This div background color is #87765E.
.myBorderColor { border: 1px solid #87765E; }
<div style="border:3px solid #87765E">Div</div>
This div border color is #87765E.
.myOpacity80 { color: #87765E; opacity: 0.8; }
<p style="color:#87765E;opacity:0.8;">80%</p>
Text with #87765E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87765E;}
<p style="text-shadow: 3px 3px 1px #87765E">Text here.</p>
This text has shadow with #87765E color.
.textShadow {text-shadow: 3px 3px 1px #87765E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87765E, 5px 5px 20px red">Text here.</p>
This text has shadow with #87765E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87765E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87765E, Direction=45, Strength=4)">Text</p>
This text has shadow with #87765E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87765E; -webkit-box-shadow: 1px 1px 3px 2px #87765E; box-shadow: 1px 1px 3px 2px #87765E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87765E; -webkit-box-shadow: 1px 1px 3px 2px #87765E; box-shadow:1px 1px 3px 2px #87765E;">
Div content here</div>
This text has color #87765E on black background.
This text has color #87765E on white background.
This text has black color on #87765E background.
This text has white color on #87765E background.