Web Safe Color

Copy-ready color values

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

Color value table

FormatValueCopy
HEX#996633
RGBrgb(153, 102, 51)
HSLhsl(30, 50%, 40%)
HSVhsv(30, 67%, 60%)
CMYK approx.cmyk(0, 33, 67, 40)
CSS keyword996633

Contrast and classification

DarkLightness4.88:1Contrast with white4.30:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#A37547

White 30%
#B89470

White 70%
#E0D1C2

White 90%
#F5F0EB

Black 10%
#8A5C2E

Black 30%
#6B4724

Black 70%
#2E1F0F

Black 90%
#0F0A05

Harmony palettes

Complementary

#6699CC
#8BB1D8

Analogous

#93663F
#996039

Triadic

#663399
#339966

Split complementary

#82ABD5
#547DA7

Using 996633

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

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

$996633: #996633;

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