HEX: #88594D
RGB: (136,89,77)
#88594D contains red, green and blue colors in about the same proportion. Web safe color of #88594D is #996633 (or #963).
#88594D color RGB value is (136,89,77).
RGB: (136,89,77) (53%,35%,30%)
R 136 of 255 = 53%
G 89 of 255 = 35%
B 77 of 255 = 30%
R + G + B ~ 39%. #88594D is quite dark color.
R + G + B =
136 + 89 + 77 = 302 (100%)
R 136 of 302 ~ 45.03%
G 89 of 302 ~ 29.47%
B 77 of 302 ~ 25.5%
#88594D color CMYK value is (0,35,43,47).
CMYK: (0,35,43,47) C0M35Y43K47 (0%,35%,43%,47%) (0.00/0.35/0.43/0.47)
88 | 59 | 4D | |
---|---|---|---|
RGB | 136 | 89 | 77 |
HSL | 12° | 27.70% | 41.76% |
HSB/HSV | 12° | 43.38% | 53.33% |
CMYK | 0.00% | 34.56% | 43.38% |
46.67% |
HEX | 88 | 59 | 4D |
Decimal | 136 | 89 | 77 |
Binary | 10001000 | 1011001 | 1001101 |
Octal | 210 | 131 | 115 |
Examples of css and html codes for elements with #88594D color. Also use rgb(136,89,77) instead hex code.
.myTextColor { color: #88594D; }
<p style="color:#88594D">This sample text font color is #88594D.</p>
This text font color is #88594D.
.myBgColor { background-color: #88594D; }
<div style="background-color:#88594D">Inner text</div>
This div background color is #88594D.
.myBorderColor { border: 1px solid #88594D; }
<div style="border:3px solid #88594D">Div</div>
This div border color is #88594D.
.myOpacity80 { color: #88594D; opacity: 0.8; }
<p style="color:#88594D;opacity:0.8;">80%</p>
Text with #88594D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88594D;}
<p style="text-shadow: 3px 3px 1px #88594D">Text here.</p>
This text has shadow with #88594D color.
.textShadow {text-shadow: 3px 3px 1px #88594D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88594D, 5px 5px 20px red">Text here.</p>
This text has shadow with #88594D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88594D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88594D, Direction=45, Strength=4)">Text</p>
This text has shadow with #88594D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88594D; -webkit-box-shadow: 1px 1px 3px 2px #88594D; box-shadow: 1px 1px 3px 2px #88594D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88594D; -webkit-box-shadow: 1px 1px 3px 2px #88594D; box-shadow:1px 1px 3px 2px #88594D;">
Div content here</div>
This text has color #88594D on black background.
This text has color #88594D on white background.
This text has black color on #88594D background.
This text has white color on #88594D background.