HEX: #87688C
RGB: (135,104,140)
#87688C contains red, green and blue colors in about the same proportion. Web safe color of #87688C is #996699 (or #969).
#87688C color RGB value is (135,104,140).
RGB: (135,104,140) (53%,41%,55%)
R 135 of 255 = 53%
G 104 of 255 = 41%
B 140 of 255 = 55%
R + G + B ~ 50%. #87688C is middle color (not dark and not light).
R + G + B =
135 + 104 + 140 = 379 (100%)
R 135 of 379 ~ 35.62%
G 104 of 379 ~ 27.44%
B 140 of 379 ~ 36.94%
#87688C color CMYK value is (4,26,0,45).
CMYK: (4,26,0,45) C4M26Y0K45 (4%,26%,0%,45%) (0.04/0.26/0.00/0.45)
87 | 68 | 8C | |
---|---|---|---|
RGB | 135 | 104 | 140 |
HSL | 292° | 14.75% | 47.84% |
HSB/HSV | 292° | 25.71% | 54.90% |
CMYK | 3.57% | 25.71% | 0.00% |
45.10% |
HEX | 87 | 68 | 8C |
Decimal | 135 | 104 | 140 |
Binary | 10000111 | 1101000 | 10001100 |
Octal | 207 | 150 | 214 |
Examples of css and html codes for elements with #87688C color. Also use rgb(135,104,140) instead hex code.
.myTextColor { color: #87688C; }
<p style="color:#87688C">This sample text font color is #87688C.</p>
This text font color is #87688C.
.myBgColor { background-color: #87688C; }
<div style="background-color:#87688C">Inner text</div>
This div background color is #87688C.
.myBorderColor { border: 1px solid #87688C; }
<div style="border:3px solid #87688C">Div</div>
This div border color is #87688C.
.myOpacity80 { color: #87688C; opacity: 0.8; }
<p style="color:#87688C;opacity:0.8;">80%</p>
Text with #87688C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87688C;}
<p style="text-shadow: 3px 3px 1px #87688C">Text here.</p>
This text has shadow with #87688C color.
.textShadow {text-shadow: 3px 3px 1px #87688C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87688C, 5px 5px 20px red">Text here.</p>
This text has shadow with #87688C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87688C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87688C, Direction=45, Strength=4)">Text</p>
This text has shadow with #87688C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87688C; -webkit-box-shadow: 1px 1px 3px 2px #87688C; box-shadow: 1px 1px 3px 2px #87688C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87688C; -webkit-box-shadow: 1px 1px 3px 2px #87688C; box-shadow:1px 1px 3px 2px #87688C;">
Div content here</div>
This text has color #87688C on black background.
This text has color #87688C on white background.
This text has black color on #87688C background.
This text has white color on #87688C background.