Web Safe Color

Copy-ready color values

HEX#996699
RGBrgb(153, 102, 153)
HSLhsl(300, 20%, 50%)
HSVhsv(300, 33%, 60%)
CMYK approx.cmyk(0, 33, 0, 40)

Color value table

FormatValueCopy
HEX#996699
RGBrgb(153, 102, 153)
HSLhsl(300, 20%, 50%)
HSVhsv(300, 33%, 60%)
CMYK approx.cmyk(0, 33, 0, 40)
CSS keyword996699

Contrast and classification

DarkLightness4.45:1Contrast with white4.71:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#A375A3

White 30%
#B894B8

White 70%
#E0D1E0

White 90%
#F5F0F5

Black 10%
#8A5C8A

Black 30%
#6B476B

Black 70%
#2E1F2E

Black 90%
#0F0A0F

Harmony palettes

Complementary

#669966
#8BB18B

Analogous

#936699
#996C93

Triadic

#669999
#999966

Split complementary

#82AB82
#547D54

Using 996699

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

.button-primary {
  background: var(--color-996699);
  color: #000000;
}

$996699: #996699;

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