HEX: #887975
RGB: (136,121,117)
#887975 contains red, green and blue colors in about the same proportion. Web safe color of #887975 is #996666 (or #966).
#887975 color RGB value is (136,121,117).
RGB: (136,121,117) (53%,47%,46%)
R 136 of 255 = 53%
G 121 of 255 = 47%
B 117 of 255 = 46%
R + G + B ~ 49%. #887975 is middle color (not dark and not light).
R + G + B =
136 + 121 + 117 = 374 (100%)
R 136 of 374 ~ 36.36%
G 121 of 374 ~ 32.35%
B 117 of 374 ~ 31.28%
#887975 color CMYK value is (0,11,14,47).
CMYK: (0,11,14,47) C0M11Y14K47 (0%,11%,14%,47%) (0.00/0.11/0.14/0.47)
88 | 79 | 75 | |
---|---|---|---|
RGB | 136 | 121 | 117 |
HSL | 13° | 7.51% | 49.61% |
HSB/HSV | 13° | 13.97% | 53.33% |
CMYK | 0.00% | 11.03% | 13.97% |
46.67% |
HEX | 88 | 79 | 75 |
Decimal | 136 | 121 | 117 |
Binary | 10001000 | 1111001 | 1110101 |
Octal | 210 | 171 | 165 |
Examples of css and html codes for elements with #887975 color. Also use rgb(136,121,117) instead hex code.
.myTextColor { color: #887975; }
<p style="color:#887975">This sample text font color is #887975.</p>
This text font color is #887975.
.myBgColor { background-color: #887975; }
<div style="background-color:#887975">Inner text</div>
This div background color is #887975.
.myBorderColor { border: 1px solid #887975; }
<div style="border:3px solid #887975">Div</div>
This div border color is #887975.
.myOpacity80 { color: #887975; opacity: 0.8; }
<p style="color:#887975;opacity:0.8;">80%</p>
Text with #887975 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #887975;}
<p style="text-shadow: 3px 3px 1px #887975">Text here.</p>
This text has shadow with #887975 color.
.textShadow {text-shadow: 3px 3px 1px #887975, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #887975, 5px 5px 20px red">Text here.</p>
This text has shadow with #887975 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#887975, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#887975, Direction=45, Strength=4)">Text</p>
This text has shadow with #887975 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #887975; -webkit-box-shadow: 1px 1px 3px 2px #887975; box-shadow: 1px 1px 3px 2px #887975; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #887975; -webkit-box-shadow: 1px 1px 3px 2px #887975; box-shadow:1px 1px 3px 2px #887975;">
Div content here</div>
This text has color #887975 on black background.
This text has color #887975 on white background.
This text has black color on #887975 background.
This text has white color on #887975 background.