#c1c1c9 hex color information.
RGB value of #c1c1c9 is (193,193,201)
Change page background color to #c1c1c9
| Reset
| RGB | 193 | 193 | 201 |
|---|---|---|---|
| HSL | 0.67 | 0.07 | 0.77 |
| HSV | 240° | 4° | 79° |
| CMYK | 0.04 | 0.04 | 0.00 0.21 |
| XYZ | 51.6049 | 53.6944 | 62.9025 |
| Yxy | 53.6944 | 0.3068 | 0.3192 |
| Hunter Lab | 73.2765 | -2.5253 | 0.3974 |
| CIE-Lab | 78.2832 | 1.5073 | -4.0137 |
#c1c1c9 hex color red value is 193, green value is 193 and the blue value of its RGB is 193. Cylindrical-coordinate representations (also known as HSL) of color #c1c1c9 hue: 0.67 , saturation: 0.07 and the lightness value of c1c1c9 is 0.77.
The process color (four color CMYK) of #c1c1c9 hex color is 0.04, 0.04, 0.00, 0.21. Web safe color of #c1c1c9 is #cccccc
Color #c1c1c9 contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11000001 | 11000001 | 11001001 |
| Octal | 301 | 301 | 311 |
| Decimal | 193 | 193 | 201 |
| Hexadecimal | C1 | C1 | C9 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#c1c1c9; }
.myforecolor {color:#c1c1c9; }
.mybordercolor {border:3px solid #c1c1c9; }
This sample text font color is #c1c1c9
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:#c1c1c9">Text here</p>
This div background color is #c1c1c9
<div style="background-color:#c1c1c9">
Div content here</div>
This div border color is #c1c1c9
<div style="border:3px solid #c1c1c9">
Div here</div>
| #c1c1c9 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(193,193,201, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #c1c1c9;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #c1c1c9;
-webkit-box-shadow: 1px 1px 3px 2px #c1c1c9;
box-shadow: 1px 1px 3px 2px #c1c1c9;
}
<p style="text-shadow: 4px 4px 2px rgba(193,193,201, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #c1c1c9">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #c1c1c9
<div style="-moz-box-shadow: 1px 1px 3px 2px #c1c1c9; -webkit-box-shadow: 1px 1px 3px 2px #c1c1c9; box-shadow: 1px 1px 3px 2px #c1c1c9;">
Div content here</div>