Web Safe Color

Copy-ready color values

HEX#996600
RGBrgb(153, 102, 0)
HSLhsl(40, 100%, 30%)
HSVhsv(40, 100%, 60%)
CMYK approx.cmyk(0, 33, 100, 40)

Color value table

FormatValueCopy
HEX#996600
RGBrgb(153, 102, 0)
HSLhsl(40, 100%, 30%)
HSVhsv(40, 100%, 60%)
CMYK approx.cmyk(0, 33, 100, 40)
CSS keyword996600

Contrast and classification

DarkLightness4.94:1Contrast with white4.26:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#A3751A

White 30%
#B8944D

White 70%
#E0D1B3

White 90%
#F5F0E6

Black 10%
#8A5C00

Black 30%
#6B4700

Black 70%
#2E1F00

Black 90%
#0F0A00

Harmony palettes

Complementary

#6699FF
#8BB1FF

Analogous

#936612
#995A0C

Triadic

#660099
#009966

Split complementary

#82ABFF
#547DD1

Using 996600

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

.button-primary {
  background: var(--color-996600);
  color: #ffffff;
}

$996600: #996600;

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