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