#c5c0a5 hex color information.
RGB value of #c5c0a5 is (197,192,165)
Change page background color to #c5c0a5
| Reset
| RGB | 197 | 192 | 165 |
|---|---|---|---|
| HSL | 0.14 | 0.22 | 0.71 |
| HSV | 51° | 16° | 77° |
| CMYK | 0.00 | 0.03 | 0.16 0.23 |
| XYZ | 48.6671 | 52.2862 | 43.1245 |
| Yxy | 52.2862 | 0.3378 | 0.3629 |
| Hunter Lab | 72.3092 | -6.4032 | 15.2565 |
| CIE-Lab | 77.4517 | -2.8006 | 14.2474 |
#c5c0a5 hex color red value is 197, green value is 192 and the blue value of its RGB is 192. Cylindrical-coordinate representations (also known as HSL) of color #c5c0a5 hue: 0.14 , saturation: 0.22 and the lightness value of c5c0a5 is 0.71.
The process color (four color CMYK) of #c5c0a5 hex color is 0.00, 0.03, 0.16, 0.23. Web safe color of #c5c0a5 is #cccc99
Color #c5c0a5 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11000101 | 11000000 | 10100101 |
| Octal | 305 | 300 | 245 |
| Decimal | 197 | 192 | 165 |
| Hexadecimal | C5 | C0 | A5 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#c5c0a5; }
.myforecolor {color:#c5c0a5; }
.mybordercolor {border:3px solid #c5c0a5; }
This sample text font color is #c5c0a5
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:#c5c0a5">Text here</p>
This div background color is #c5c0a5
<div style="background-color:#c5c0a5">
Div content here</div>
This div border color is #c5c0a5
<div style="border:3px solid #c5c0a5">
Div here</div>
| #c5c0a5 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(197,192,165, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #c5c0a5;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #c5c0a5;
-webkit-box-shadow: 1px 1px 3px 2px #c5c0a5;
box-shadow: 1px 1px 3px 2px #c5c0a5;
}
<p style="text-shadow: 4px 4px 2px rgba(197,192,165, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #c5c0a5">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #c5c0a5
<div style="-moz-box-shadow: 1px 1px 3px 2px #c5c0a5; -webkit-box-shadow: 1px 1px 3px 2px #c5c0a5; box-shadow: 1px 1px 3px 2px #c5c0a5;">
Div content here</div>