#c6cac6 hex color information.
RGB value of #c6cac6 is (198,202,198)
Change page background color to #c6cac6
| Reset
| RGB | 198 | 202 | 198 |
|---|---|---|---|
| HSL | 0.33 | 0.04 | 0.78 |
| HSV | 120° | 2° | 79° |
| CMYK | 0.02 | 0.00 | 0.02 0.21 |
| XYZ | 54.6023 | 58.3240 | 61.8059 |
| Yxy | 58.3240 | 0.3125 | 0.3338 |
| Hunter Lab | 76.3702 | -6.0258 | 5.4761 |
| CIE-Lab | 80.9186 | -2.1028 | 1.5037 |
#c6cac6 hex color red value is 198, green value is 202 and the blue value of its RGB is 202. Cylindrical-coordinate representations (also known as HSL) of color #c6cac6 hue: 0.33 , saturation: 0.04 and the lightness value of c6cac6 is 0.78.
The process color (four color CMYK) of #c6cac6 hex color is 0.02, 0.00, 0.02, 0.21. Web safe color of #c6cac6 is #cccccc
Color #c6cac6 contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11000110 | 11001010 | 11000110 |
| Octal | 306 | 312 | 306 |
| Decimal | 198 | 202 | 198 |
| Hexadecimal | C6 | CA | C6 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#c6cac6; }
.myforecolor {color:#c6cac6; }
.mybordercolor {border:3px solid #c6cac6; }
This sample text font color is #c6cac6
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:#c6cac6">Text here</p>
This div background color is #c6cac6
<div style="background-color:#c6cac6">
Div content here</div>
This div border color is #c6cac6
<div style="border:3px solid #c6cac6">
Div here</div>
| #c6cac6 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(198,202,198, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #c6cac6;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #c6cac6;
-webkit-box-shadow: 1px 1px 3px 2px #c6cac6;
box-shadow: 1px 1px 3px 2px #c6cac6;
}
<p style="text-shadow: 4px 4px 2px rgba(198,202,198, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #c6cac6">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #c6cac6
<div style="-moz-box-shadow: 1px 1px 3px 2px #c6cac6; -webkit-box-shadow: 1px 1px 3px 2px #c6cac6; box-shadow: 1px 1px 3px 2px #c6cac6;">
Div content here</div>