HEX: #8D756B
RGB: (141,117,107)
#8D756B contains red, green and blue colors in about the same proportion. Web safe color of #8D756B is #996666 (or #966).
#8D756B color RGB value is (141,117,107).
RGB: (141,117,107) (55%,46%,42%)
R 141 of 255 = 55%
G 117 of 255 = 46%
B 107 of 255 = 42%
R + G + B ~ 48%. #8D756B is middle color (not dark and not light).
R + G + B =
141 + 117 + 107 = 365 (100%)
R 141 of 365 ~ 38.63%
G 117 of 365 ~ 32.05%
B 107 of 365 ~ 29.32%
#8D756B color CMYK value is (0,17,24,45).
CMYK: (0,17,24,45) C0M17Y24K45 (0%,17%,24%,45%) (0.00/0.17/0.24/0.45)
8D | 75 | 6B | |
---|---|---|---|
RGB | 141 | 117 | 107 |
HSL | 18° | 13.71% | 48.63% |
HSB/HSV | 18° | 24.11% | 55.29% |
CMYK | 0.00% | 17.02% | 24.11% |
44.71% |
HEX | 8D | 75 | 6B |
Decimal | 141 | 117 | 107 |
Binary | 10001101 | 1110101 | 1101011 |
Octal | 215 | 165 | 153 |
Examples of css and html codes for elements with #8D756B color. Also use rgb(141,117,107) instead hex code.
.myTextColor { color: #8D756B; }
<p style="color:#8D756B">This sample text font color is #8D756B.</p>
This text font color is #8D756B.
.myBgColor { background-color: #8D756B; }
<div style="background-color:#8D756B">Inner text</div>
This div background color is #8D756B.
.myBorderColor { border: 1px solid #8D756B; }
<div style="border:3px solid #8D756B">Div</div>
This div border color is #8D756B.
.myOpacity80 { color: #8D756B; opacity: 0.8; }
<p style="color:#8D756B;opacity:0.8;">80%</p>
Text with #8D756B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8D756B;}
<p style="text-shadow: 3px 3px 1px #8D756B">Text here.</p>
This text has shadow with #8D756B color.
.textShadow {text-shadow: 3px 3px 1px #8D756B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8D756B, 5px 5px 20px red">Text here.</p>
This text has shadow with #8D756B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8D756B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8D756B, Direction=45, Strength=4)">Text</p>
This text has shadow with #8D756B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8D756B; -webkit-box-shadow: 1px 1px 3px 2px #8D756B; box-shadow: 1px 1px 3px 2px #8D756B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8D756B; -webkit-box-shadow: 1px 1px 3px 2px #8D756B; box-shadow:1px 1px 3px 2px #8D756B;">
Div content here</div>
This text has color #8D756B on black background.
This text has color #8D756B on white background.
This text has black color on #8D756B background.
This text has white color on #8D756B background.