Web Safe Color

Copy-ready color values

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

Color value table

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

Contrast and classification

DarkLightness7.30:1Contrast with white2.88:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#A34747

White 30%
#B87070

White 70%
#E0C2C2

White 90%
#F5EBEB

Black 10%
#8A2E2E

Black 30%
#6B2424

Black 70%
#2E0F0F

Black 90%
#0F0505

Harmony palettes

Complementary

#66CCCC
#8BD8D8

Analogous

#8D333F
#993333

Triadic

#333399
#339933

Split complementary

#82D5D5
#54A7A7

Using 993333

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

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

$993333: #993333;

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