HEX: #88847C
RGB: (136,132,124)
#88847C contains red, green and blue colors in about the same proportion. Web safe color of #88847C is #999966 (or #996).
#88847C color RGB value is (136,132,124).
RGB: (136,132,124) (53%,52%,49%)
R 136 of 255 = 53%
G 132 of 255 = 52%
B 124 of 255 = 49%
R + G + B ~ 51%. #88847C is middle color (not dark and not light).
R + G + B =
136 + 132 + 124 = 392 (100%)
R 136 of 392 ~ 34.69%
G 132 of 392 ~ 33.67%
B 124 of 392 ~ 31.63%
#88847C color CMYK value is (0,3,9,47).
CMYK: (0,3,9,47) C0M3Y9K47 (0%,3%,9%,47%) (0.00/0.03/0.09/0.47)
88 | 84 | 7C | |
---|---|---|---|
RGB | 136 | 132 | 124 |
HSL | 40° | 4.80% | 50.98% |
HSB/HSV | 40° | 8.82% | 53.33% |
CMYK | 0.00% | 2.94% | 8.82% |
46.67% |
HEX | 88 | 84 | 7C |
Decimal | 136 | 132 | 124 |
Binary | 10001000 | 10000100 | 1111100 |
Octal | 210 | 204 | 174 |
Examples of css and html codes for elements with #88847C color. Also use rgb(136,132,124) instead hex code.
.myTextColor { color: #88847C; }
<p style="color:#88847C">This sample text font color is #88847C.</p>
This text font color is #88847C.
.myBgColor { background-color: #88847C; }
<div style="background-color:#88847C">Inner text</div>
This div background color is #88847C.
.myBorderColor { border: 1px solid #88847C; }
<div style="border:3px solid #88847C">Div</div>
This div border color is #88847C.
.myOpacity80 { color: #88847C; opacity: 0.8; }
<p style="color:#88847C;opacity:0.8;">80%</p>
Text with #88847C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88847C;}
<p style="text-shadow: 3px 3px 1px #88847C">Text here.</p>
This text has shadow with #88847C color.
.textShadow {text-shadow: 3px 3px 1px #88847C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88847C, 5px 5px 20px red">Text here.</p>
This text has shadow with #88847C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88847C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88847C, Direction=45, Strength=4)">Text</p>
This text has shadow with #88847C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88847C; -webkit-box-shadow: 1px 1px 3px 2px #88847C; box-shadow: 1px 1px 3px 2px #88847C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88847C; -webkit-box-shadow: 1px 1px 3px 2px #88847C; box-shadow:1px 1px 3px 2px #88847C;">
Div content here</div>
This text has color #88847C on black background.
This text has color #88847C on white background.
This text has black color on #88847C background.
This text has white color on #88847C background.