Web Safe Color
Copy-ready color values
HEX
#999999RGB
rgb(153, 153, 153)HSL
hsl(0, 0%, 60%)HSV
hsv(0, 0%, 60%)CMYK approx.
cmyk(0, 0, 0, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #999999 | |
| RGB | rgb(153, 153, 153) | |
| HSL | hsl(0, 0%, 60%) | |
| HSV | hsv(0, 0%, 60%) | |
| CMYK approx. | cmyk(0, 0, 0, 40) | |
| CSS keyword | 999999 |
Contrast and classification
LightLightness2.85:1Contrast with white7.37:1Contrast with blackGrayscaleColor family
Shade and tint preview
White 10%#A3A3A3
White 30%#B8B8B8
White 70%#E0E0E0
White 90%#F5F5F5
Black 10%#8A8A8A
Black 30%#6B6B6B
Black 70%#2E2E2E
Black 90%#0F0F0F
Harmony palettes
Complementary
#666666#8B8B8BAnalogous
#999999#999999Triadic
#999999#999999Split complementary
#828282#545454Using 999999
999999 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-999999: #999999;
}
.button-primary {
background: var(--color-999999);
color: #000000;
}
$999999: #999999;
// Tailwind arbitrary value
class="bg-[#999999] text-white"