Web Safe Color
Copy-ready color values
HEX
#999966RGB
rgb(153, 153, 102)HSL
hsl(60, 20%, 50%)HSV
hsv(60, 33%, 60%)CMYK approx.
cmyk(0, 0, 33, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #999966 | |
| RGB | rgb(153, 153, 102) | |
| HSL | hsl(60, 20%, 50%) | |
| HSV | hsv(60, 33%, 60%) | |
| CMYK approx. | cmyk(0, 0, 33, 40) | |
| CSS keyword | 999966 |
Contrast and classification
DarkLightness2.96:1Contrast with white7.10:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#A3A375
White 30%#B8B894
White 70%#E0E0D1
White 90%#F5F5F0
Black 10%#8A8A5C
Black 30%#6B6B47
Black 70%#2E2E1F
Black 90%#0F0F0A
Harmony palettes
Complementary
#666699#8B8BB1Analogous
#99996C#99936CTriadic
#996699#669999Split complementary
#8282AB#54547DUsing 999966
999966 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-999966: #999966;
}
.button-primary {
background: var(--color-999966);
color: #000000;
}
$999966: #999966;
// Tailwind arbitrary value
class="bg-[#999966] text-white"