HEX: #87716A
RGB: (135,113,106)
#87716A contains red, green and blue colors in about the same proportion. Web safe color of #87716A is #996666 (or #966).
#87716A color RGB value is (135,113,106).
RGB: (135,113,106) (53%,44%,42%)
R 135 of 255 = 53%
G 113 of 255 = 44%
B 106 of 255 = 42%
R + G + B ~ 46%. #87716A is middle color (not dark and not light).
R + G + B =
135 + 113 + 106 = 354 (100%)
R 135 of 354 ~ 38.14%
G 113 of 354 ~ 31.92%
B 106 of 354 ~ 29.94%
#87716A color CMYK value is (0,16,21,47).
CMYK: (0,16,21,47) C0M16Y21K47 (0%,16%,21%,47%) (0.00/0.16/0.21/0.47)
87 | 71 | 6A | |
---|---|---|---|
RGB | 135 | 113 | 106 |
HSL | 14° | 12.03% | 47.25% |
HSB/HSV | 14° | 21.48% | 52.94% |
CMYK | 0.00% | 16.30% | 21.48% |
47.06% |
HEX | 87 | 71 | 6A |
Decimal | 135 | 113 | 106 |
Binary | 10000111 | 1110001 | 1101010 |
Octal | 207 | 161 | 152 |
Examples of css and html codes for elements with #87716A color. Also use rgb(135,113,106) instead hex code.
.myTextColor { color: #87716A; }
<p style="color:#87716A">This sample text font color is #87716A.</p>
This text font color is #87716A.
.myBgColor { background-color: #87716A; }
<div style="background-color:#87716A">Inner text</div>
This div background color is #87716A.
.myBorderColor { border: 1px solid #87716A; }
<div style="border:3px solid #87716A">Div</div>
This div border color is #87716A.
.myOpacity80 { color: #87716A; opacity: 0.8; }
<p style="color:#87716A;opacity:0.8;">80%</p>
Text with #87716A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87716A;}
<p style="text-shadow: 3px 3px 1px #87716A">Text here.</p>
This text has shadow with #87716A color.
.textShadow {text-shadow: 3px 3px 1px #87716A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87716A, 5px 5px 20px red">Text here.</p>
This text has shadow with #87716A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87716A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87716A, Direction=45, Strength=4)">Text</p>
This text has shadow with #87716A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87716A; -webkit-box-shadow: 1px 1px 3px 2px #87716A; box-shadow: 1px 1px 3px 2px #87716A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87716A; -webkit-box-shadow: 1px 1px 3px 2px #87716A; box-shadow:1px 1px 3px 2px #87716A;">
Div content here</div>
This text has color #87716A on black background.
This text has color #87716A on white background.
This text has black color on #87716A background.
This text has white color on #87716A background.