Web Safe Color

Copy-ready color values

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

Color value table

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

Contrast and classification

DarkLightness6.39:1Contrast with white3.29:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#A347A3

White 30%
#B870B8

White 70%
#E0C2E0

White 90%
#F5EBF5

Black 10%
#8A2E8A

Black 30%
#6B246B

Black 70%
#2E0F2E

Black 90%
#0F050F

Harmony palettes

Complementary

#66CC66
#8BD88B

Analogous

#8D3399
#993F8D

Triadic

#339999
#999933

Split complementary

#82D582
#54A754

Using 993399

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

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

$993399: #993399;

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