Web Safe Color
Copy-ready color values
HEX
#CCCCCCRGB
rgb(204, 204, 204)HSL
hsl(0, 0%, 80%)HSV
hsv(0, 0%, 80%)CMYK approx.
cmyk(0, 0, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CCCCCC | |
| RGB | rgb(204, 204, 204) | |
| HSL | hsl(0, 0%, 80%) | |
| HSV | hsv(0, 0%, 80%) | |
| CMYK approx. | cmyk(0, 0, 0, 20) | |
| CSS keyword | cccccc |
Contrast and classification
LightLightness1.61:1Contrast with white13.08:1Contrast with blackGrayscaleColor family
Shade and tint preview
White 10%#D1D1D1
White 30%#DBDBDB
White 70%#F0F0F0
White 90%#FAFAFA
Black 10%#B8B8B8
Black 30%#8F8F8F
Black 70%#3D3D3D
Black 90%#141414
Harmony palettes
Complementary
#333333#646464Analogous
#CCCCCC#CCCCCCTriadic
#CCCCCC#CCCCCCSplit complementary
#585858#2A2A2AUsing Cccccc
Cccccc works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-cccccc: #cccccc;
}
.button-primary {
background: var(--color-cccccc);
color: #000000;
}
$cccccc: #cccccc;
// Tailwind arbitrary value
class="bg-[#cccccc] text-white"