#c0c1c0 hex color information.
RGB value of #c0c1c0 is (192,193,192)
Change page background color to #c0c1c0
| Reset
| RGB | 192 | 193 | 192 |
|---|---|---|---|
| HSL | 0.33 | 0.01 | 0.75 |
| HSV | 120° | 1° | 76° |
| CMYK | 0.01 | 0.00 | 0.01 0.24 |
| XYZ | 50.3226 | 53.1522 | 57.4763 |
| Yxy | 53.1522 | 0.3127 | 0.3302 |
| Hunter Lab | 72.9056 | -4.3762 | 4.2916 |
| CIE-Lab | 77.9648 | -0.5271 | 0.3717 |
#c0c1c0 hex color red value is 192, green value is 193 and the blue value of its RGB is 193. Cylindrical-coordinate representations (also known as HSL) of color #c0c1c0 hue: 0.33 , saturation: 0.01 and the lightness value of c0c1c0 is 0.75.
The process color (four color CMYK) of #c0c1c0 hex color is 0.01, 0.00, 0.01, 0.24. Web safe color of #c0c1c0 is #cccccc
Color #c0c1c0 contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11000000 | 11000001 | 11000000 |
| Octal | 300 | 301 | 300 |
| Decimal | 192 | 193 | 192 |
| Hexadecimal | C0 | C1 | C0 |
Analogous colors are identical
| #c0c1c0 | #c1c0c1 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#c0c1c0; }
.myforecolor {color:#c0c1c0; }
.mybordercolor {border:3px solid #c0c1c0; }
This sample text font color is #c0c1c0
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:#c0c1c0">Text here</p>
This div background color is #c0c1c0
<div style="background-color:#c0c1c0">
Div content here</div>
This div border color is #c0c1c0
<div style="border:3px solid #c0c1c0">
Div here</div>
| #c0c1c0 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(192,193,192, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #c0c1c0;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #c0c1c0;
-webkit-box-shadow: 1px 1px 3px 2px #c0c1c0;
box-shadow: 1px 1px 3px 2px #c0c1c0;
}
<p style="text-shadow: 4px 4px 2px rgba(192,193,192, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #c0c1c0">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #c0c1c0
<div style="-moz-box-shadow: 1px 1px 3px 2px #c0c1c0; -webkit-box-shadow: 1px 1px 3px 2px #c0c1c0; box-shadow: 1px 1px 3px 2px #c0c1c0;">
Div content here</div>