Web Safe Color

Copy-ready color values

HEX#990099
RGBrgb(153, 0, 153)
HSLhsl(300, 100%, 30%)
HSVhsv(300, 100%, 60%)
CMYK approx.cmyk(0, 100, 0, 40)

Color value table

FormatValueCopy
HEX#990099
RGBrgb(153, 0, 153)
HSLhsl(300, 100%, 30%)
HSVhsv(300, 100%, 60%)
CMYK approx.cmyk(0, 100, 0, 40)
CSS keyword990099

Contrast and classification

DarkLightness7.46:1Contrast with white2.81:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#A31AA3

White 30%
#B84DB8

White 70%
#E0B3E0

White 90%
#F5E6F5

Black 10%
#8A008A

Black 30%
#6B006B

Black 70%
#2E002E

Black 90%
#0F000F

Harmony palettes

Complementary

#66FF66
#8BFF8B

Analogous

#870099
#991287

Triadic

#009999
#999900

Split complementary

#82FF82
#54D154

Using 990099

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

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

$990099: #990099;

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