#c7c6c6 hex color information.
RGB value of #c7c6c6 is (199,198,198)
Change page background color to #c7c6c6
| Reset
| RGB | 199 | 198 | 198 |
|---|---|---|---|
| HSL | 0.00 | 0.01 | 0.78 |
| HSV | 0° | 1° | 78° |
| CMYK | 0.00 | 0.01 | 0.01 0.22 |
| XYZ | 53.9403 | 56.6075 | 61.5095 |
| Yxy | 56.6075 | 0.3135 | 0.3290 |
| Hunter Lab | 75.2380 | -3.6945 | 4.1950 |
| CIE-Lab | 79.9583 | 0.3497 | 0.1132 |
#c7c6c6 hex color red value is 199, green value is 198 and the blue value of its RGB is 198. Cylindrical-coordinate representations (also known as HSL) of color #c7c6c6 hue: 0.00 , saturation: 0.01 and the lightness value of c7c6c6 is 0.78.
The process color (four color CMYK) of #c7c6c6 hex color is 0.00, 0.01, 0.01, 0.22. Web safe color of #c7c6c6 is #cccccc
Color #c7c6c6 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11000111 | 11000110 | 11000110 |
| Octal | 307 | 306 | 306 |
| Decimal | 199 | 198 | 198 |
| Hexadecimal | C7 | C6 | C6 |
Analogous colors are identical
| #c7c6c6 | #c6c7c7 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#c7c6c6; }
.myforecolor {color:#c7c6c6; }
.mybordercolor {border:3px solid #c7c6c6; }
This sample text font color is #c7c6c6
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:#c7c6c6">Text here</p>
This div background color is #c7c6c6
<div style="background-color:#c7c6c6">
Div content here</div>
This div border color is #c7c6c6
<div style="border:3px solid #c7c6c6">
Div here</div>
| #c7c6c6 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(199,198,198, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #c7c6c6;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #c7c6c6;
-webkit-box-shadow: 1px 1px 3px 2px #c7c6c6;
box-shadow: 1px 1px 3px 2px #c7c6c6;
}
<p style="text-shadow: 4px 4px 2px rgba(199,198,198, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #c7c6c6">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #c7c6c6
<div style="-moz-box-shadow: 1px 1px 3px 2px #c7c6c6; -webkit-box-shadow: 1px 1px 3px 2px #c7c6c6; box-shadow: 1px 1px 3px 2px #c7c6c6;">
Div content here</div>