Web Safe Color

Copy-ready color values

HEX#999933
RGBrgb(153, 153, 51)
HSLhsl(60, 50%, 40%)
HSVhsv(60, 67%, 60%)
CMYK approx.cmyk(0, 0, 67, 40)

Color value table

FormatValueCopy
HEX#999933
RGBrgb(153, 153, 51)
HSLhsl(60, 50%, 40%)
HSVhsv(60, 67%, 60%)
CMYK approx.cmyk(0, 0, 67, 40)
CSS keyword999933

Contrast and classification

DarkLightness3.02:1Contrast with white6.96:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#A3A347

White 30%
#B8B870

White 70%
#E0E0C2

White 90%
#F5F5EB

Black 10%
#8A8A2E

Black 30%
#6B6B24

Black 70%
#2E2E0F

Black 90%
#0F0F05

Harmony palettes

Complementary

#6666CC
#8B8BD8

Analogous

#99993F
#998D3F

Triadic

#993399
#339999

Split complementary

#8282D5
#5454A7

Using 999933

999933 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-999933: #999933;
}

.button-primary {
  background: var(--color-999933);
  color: #000000;
}

$999933: #999933;

// Tailwind arbitrary value
class="bg-[#999933] text-white"