HEX: #87675C
RGB: (135,103,92)
#87675C contains red, green and blue colors in about the same proportion. Web safe color of #87675C is #996666 (or #966).
#87675C color RGB value is (135,103,92).
RGB: (135,103,92) (53%,40%,36%)
R 135 of 255 = 53%
G 103 of 255 = 40%
B 92 of 255 = 36%
R + G + B ~ 43%. #87675C is middle color (not dark and not light).
R + G + B =
135 + 103 + 92 = 330 (100%)
R 135 of 330 ~ 40.91%
G 103 of 330 ~ 31.21%
B 92 of 330 ~ 27.88%
#87675C color CMYK value is (0,24,32,47).
CMYK: (0,24,32,47) C0M24Y32K47 (0%,24%,32%,47%) (0.00/0.24/0.32/0.47)
87 | 67 | 5C | |
---|---|---|---|
RGB | 135 | 103 | 92 |
HSL | 15° | 18.94% | 44.51% |
HSB/HSV | 15° | 31.85% | 52.94% |
CMYK | 0.00% | 23.70% | 31.85% |
47.06% |
HEX | 87 | 67 | 5C |
Decimal | 135 | 103 | 92 |
Binary | 10000111 | 1100111 | 1011100 |
Octal | 207 | 147 | 134 |
Examples of css and html codes for elements with #87675C color. Also use rgb(135,103,92) instead hex code.
.myTextColor { color: #87675C; }
<p style="color:#87675C">This sample text font color is #87675C.</p>
This text font color is #87675C.
.myBgColor { background-color: #87675C; }
<div style="background-color:#87675C">Inner text</div>
This div background color is #87675C.
.myBorderColor { border: 1px solid #87675C; }
<div style="border:3px solid #87675C">Div</div>
This div border color is #87675C.
.myOpacity80 { color: #87675C; opacity: 0.8; }
<p style="color:#87675C;opacity:0.8;">80%</p>
Text with #87675C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87675C;}
<p style="text-shadow: 3px 3px 1px #87675C">Text here.</p>
This text has shadow with #87675C color.
.textShadow {text-shadow: 3px 3px 1px #87675C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87675C, 5px 5px 20px red">Text here.</p>
This text has shadow with #87675C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87675C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87675C, Direction=45, Strength=4)">Text</p>
This text has shadow with #87675C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87675C; -webkit-box-shadow: 1px 1px 3px 2px #87675C; box-shadow: 1px 1px 3px 2px #87675C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87675C; -webkit-box-shadow: 1px 1px 3px 2px #87675C; box-shadow:1px 1px 3px 2px #87675C;">
Div content here</div>
This text has color #87675C on black background.
This text has color #87675C on white background.
This text has black color on #87675C background.
This text has white color on #87675C background.