HEX: #88775F
RGB: (136,119,95)
#88775F contains red, green and blue colors in about the same proportion. Web safe color of #88775F is #996666 (or #966).
#88775F color RGB value is (136,119,95).
RGB: (136,119,95) (53%,47%,37%)
R 136 of 255 = 53%
G 119 of 255 = 47%
B 95 of 255 = 37%
R + G + B ~ 46%. #88775F is middle color (not dark and not light).
R + G + B =
136 + 119 + 95 = 350 (100%)
R 136 of 350 ~ 38.86%
G 119 of 350 ~ 34%
B 95 of 350 ~ 27.14%
#88775F color CMYK value is (0,13,30,47).
CMYK: (0,13,30,47) C0M13Y30K47 (0%,13%,30%,47%) (0.00/0.13/0.30/0.47)
88 | 77 | 5F | |
---|---|---|---|
RGB | 136 | 119 | 95 |
HSL | 35° | 17.75% | 45.29% |
HSB/HSV | 35° | 30.15% | 53.33% |
CMYK | 0.00% | 12.50% | 30.15% |
46.67% |
HEX | 88 | 77 | 5F |
Decimal | 136 | 119 | 95 |
Binary | 10001000 | 1110111 | 1011111 |
Octal | 210 | 167 | 137 |
Examples of css and html codes for elements with #88775F color. Also use rgb(136,119,95) instead hex code.
.myTextColor { color: #88775F; }
<p style="color:#88775F">This sample text font color is #88775F.</p>
This text font color is #88775F.
.myBgColor { background-color: #88775F; }
<div style="background-color:#88775F">Inner text</div>
This div background color is #88775F.
.myBorderColor { border: 1px solid #88775F; }
<div style="border:3px solid #88775F">Div</div>
This div border color is #88775F.
.myOpacity80 { color: #88775F; opacity: 0.8; }
<p style="color:#88775F;opacity:0.8;">80%</p>
Text with #88775F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88775F;}
<p style="text-shadow: 3px 3px 1px #88775F">Text here.</p>
This text has shadow with #88775F color.
.textShadow {text-shadow: 3px 3px 1px #88775F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88775F, 5px 5px 20px red">Text here.</p>
This text has shadow with #88775F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88775F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88775F, Direction=45, Strength=4)">Text</p>
This text has shadow with #88775F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88775F; -webkit-box-shadow: 1px 1px 3px 2px #88775F; box-shadow: 1px 1px 3px 2px #88775F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88775F; -webkit-box-shadow: 1px 1px 3px 2px #88775F; box-shadow:1px 1px 3px 2px #88775F;">
Div content here</div>
This text has color #88775F on black background.
This text has color #88775F on white background.
This text has black color on #88775F background.
This text has white color on #88775F background.