#9c8c84 hex color information.
RGB value of #9c8c84 is (156,140,132)
Change page background color to #9c8c84
| Reset
| RGB | 156 | 140 | 132 |
|---|---|---|---|
| HSL | 0.06 | 0.11 | 0.56 |
| HSV | 20° | 15° | 61° |
| CMYK | 0.00 | 0.10 | 0.15 0.39 |
| XYZ | 27.2532 | 27.4900 | 25.6995 |
| Yxy | 27.4900 | 0.3388 | 0.3417 |
| Hunter Lab | 52.4309 | 1.0289 | 7.6401 |
| CIE-Lab | 59.4252 | 4.5997 | 6.4435 |
#9c8c84 hex color red value is 156, green value is 140 and the blue value of its RGB is 140. Cylindrical-coordinate representations (also known as HSL) of color #9c8c84 hue: 0.06 , saturation: 0.11 and the lightness value of 9c8c84 is 0.56.
The process color (four color CMYK) of #9c8c84 hex color is 0.00, 0.10, 0.15, 0.39. Web safe color of #9c8c84 is #999999
Color #9c8c84 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10011100 | 10001100 | 10000100 |
| Octal | 234 | 214 | 204 |
| Decimal | 156 | 140 | 132 |
| Hexadecimal | 9C | 8C | 84 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#9c8c84; }
.myforecolor {color:#9c8c84; }
.mybordercolor {border:3px solid #9c8c84; }
This sample text font color is #9c8c84
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#9c8c84">Text here</p>
This div background color is #9c8c84
<div style="background-color:#9c8c84">
Div content here</div>
This div border color is #9c8c84
<div style="border:3px solid #9c8c84">
Div here</div>
| #9c8c84 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(156,140,132, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #9c8c84;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #9c8c84;
-webkit-box-shadow: 1px 1px 3px 2px #9c8c84;
box-shadow: 1px 1px 3px 2px #9c8c84;
}
<p style="text-shadow: 4px 4px 2px rgba(156,140,132, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #9c8c84">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #9c8c84
<div style="-moz-box-shadow: 1px 1px 3px 2px #9c8c84; -webkit-box-shadow: 1px 1px 3px 2px #9c8c84; box-shadow: 1px 1px 3px 2px #9c8c84;">
Div content here</div>