HEX: #88748D
RGB: (136,116,141)
#88748D contains red, green and blue colors in about the same proportion. Web safe color of #88748D is #996699 (or #969).
#88748D color RGB value is (136,116,141).
RGB: (136,116,141) (53%,45%,55%)
R 136 of 255 = 53%
G 116 of 255 = 45%
B 141 of 255 = 55%
R + G + B ~ 51%. #88748D is middle color (not dark and not light).
R + G + B =
136 + 116 + 141 = 393 (100%)
R 136 of 393 ~ 34.61%
G 116 of 393 ~ 29.52%
B 141 of 393 ~ 35.88%
#88748D color CMYK value is (4,18,0,45).
CMYK: (4,18,0,45) C4M18Y0K45 (4%,18%,0%,45%) (0.04/0.18/0.00/0.45)
88 | 74 | 8D | |
---|---|---|---|
RGB | 136 | 116 | 141 |
HSL | 288° | 9.88% | 50.39% |
HSB/HSV | 288° | 17.73% | 55.29% |
CMYK | 3.55% | 17.73% | 0.00% |
44.71% |
HEX | 88 | 74 | 8D |
Decimal | 136 | 116 | 141 |
Binary | 10001000 | 1110100 | 10001101 |
Octal | 210 | 164 | 215 |
Examples of css and html codes for elements with #88748D color. Also use rgb(136,116,141) instead hex code.
.myTextColor { color: #88748D; }
<p style="color:#88748D">This sample text font color is #88748D.</p>
This text font color is #88748D.
.myBgColor { background-color: #88748D; }
<div style="background-color:#88748D">Inner text</div>
This div background color is #88748D.
.myBorderColor { border: 1px solid #88748D; }
<div style="border:3px solid #88748D">Div</div>
This div border color is #88748D.
.myOpacity80 { color: #88748D; opacity: 0.8; }
<p style="color:#88748D;opacity:0.8;">80%</p>
Text with #88748D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88748D;}
<p style="text-shadow: 3px 3px 1px #88748D">Text here.</p>
This text has shadow with #88748D color.
.textShadow {text-shadow: 3px 3px 1px #88748D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88748D, 5px 5px 20px red">Text here.</p>
This text has shadow with #88748D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88748D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88748D, Direction=45, Strength=4)">Text</p>
This text has shadow with #88748D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88748D; -webkit-box-shadow: 1px 1px 3px 2px #88748D; box-shadow: 1px 1px 3px 2px #88748D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88748D; -webkit-box-shadow: 1px 1px 3px 2px #88748D; box-shadow:1px 1px 3px 2px #88748D;">
Div content here</div>
This text has color #88748D on black background.
This text has color #88748D on white background.
This text has black color on #88748D background.
This text has white color on #88748D background.