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