Web Safe Color
Copy-ready color values
HEX
#999900RGB
rgb(153, 153, 0)HSL
hsl(60, 100%, 30%)HSV
hsv(60, 100%, 60%)CMYK approx.
cmyk(0, 0, 100, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #999900 | |
| RGB | rgb(153, 153, 0) | |
| HSL | hsl(60, 100%, 30%) | |
| HSV | hsv(60, 100%, 60%) | |
| CMYK approx. | cmyk(0, 0, 100, 40) | |
| CSS keyword | 999900 |
Contrast and classification
DarkLightness3.04:1Contrast with white6.91:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#A3A31A
White 30%#B8B84D
White 70%#E0E0B3
White 90%#F5F5E6
Black 10%#8A8A00
Black 30%#6B6B00
Black 70%#2E2E00
Black 90%#0F0F00
Harmony palettes
Complementary
#6666FF#8B8BFFAnalogous
#999912#998712Triadic
#990099#009999Split complementary
#8282FF#5454D1Using 999900
999900 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-999900: #999900;
}
.button-primary {
background: var(--color-999900);
color: #000000;
}
$999900: #999900;
// Tailwind arbitrary value
class="bg-[#999900] text-white"