HEX: #88635D
RGB: (136,99,93)
#88635D contains red, green and blue colors in about the same proportion. Web safe color of #88635D is #996666 (or #966).
#88635D color RGB value is (136,99,93).
RGB: (136,99,93) (53%,39%,36%)
R 136 of 255 = 53%
G 99 of 255 = 39%
B 93 of 255 = 36%
R + G + B ~ 43%. #88635D is middle color (not dark and not light).
R + G + B =
136 + 99 + 93 = 328 (100%)
R 136 of 328 ~ 41.46%
G 99 of 328 ~ 30.18%
B 93 of 328 ~ 28.35%
#88635D color CMYK value is (0,27,32,47).
CMYK: (0,27,32,47) C0M27Y32K47 (0%,27%,32%,47%) (0.00/0.27/0.32/0.47)
88 | 63 | 5D | |
---|---|---|---|
RGB | 136 | 99 | 93 |
HSL | 8° | 18.78% | 44.90% |
HSB/HSV | 8° | 31.62% | 53.33% |
CMYK | 0.00% | 27.21% | 31.62% |
46.67% |
HEX | 88 | 63 | 5D |
Decimal | 136 | 99 | 93 |
Binary | 10001000 | 1100011 | 1011101 |
Octal | 210 | 143 | 135 |
Examples of css and html codes for elements with #88635D color. Also use rgb(136,99,93) instead hex code.
.myTextColor { color: #88635D; }
<p style="color:#88635D">This sample text font color is #88635D.</p>
This text font color is #88635D.
.myBgColor { background-color: #88635D; }
<div style="background-color:#88635D">Inner text</div>
This div background color is #88635D.
.myBorderColor { border: 1px solid #88635D; }
<div style="border:3px solid #88635D">Div</div>
This div border color is #88635D.
.myOpacity80 { color: #88635D; opacity: 0.8; }
<p style="color:#88635D;opacity:0.8;">80%</p>
Text with #88635D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88635D;}
<p style="text-shadow: 3px 3px 1px #88635D">Text here.</p>
This text has shadow with #88635D color.
.textShadow {text-shadow: 3px 3px 1px #88635D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88635D, 5px 5px 20px red">Text here.</p>
This text has shadow with #88635D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88635D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88635D, Direction=45, Strength=4)">Text</p>
This text has shadow with #88635D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88635D; -webkit-box-shadow: 1px 1px 3px 2px #88635D; box-shadow: 1px 1px 3px 2px #88635D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88635D; -webkit-box-shadow: 1px 1px 3px 2px #88635D; box-shadow:1px 1px 3px 2px #88635D;">
Div content here</div>
This text has color #88635D on black background.
This text has color #88635D on white background.
This text has black color on #88635D background.
This text has white color on #88635D background.