Web Safe Color

Copy-ready color values

HEX#9966CC
RGBrgb(153, 102, 204)
HSLhsl(270, 50%, 60%)
HSVhsv(270, 50%, 80%)
CMYK approx.cmyk(25, 50, 0, 20)

Color value table

FormatValueCopy
HEX#9966CC
RGBrgb(153, 102, 204)
HSLhsl(270, 50%, 60%)
HSVhsv(270, 50%, 80%)
CMYK approx.cmyk(25, 50, 0, 20)
CSS keyword9966cc

Contrast and classification

LightLightness4.10:1Contrast with white5.13:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#A375D1

White 30%
#B894DB

White 70%
#E0D1F0

White 90%
#F5F0FA

Black 10%
#8A5CB8

Black 30%
#6B478F

Black 70%
#2E1F3D

Black 90%
#0F0A14

Harmony palettes

Complementary

#669933
#8BB164

Analogous

#9366C6
#9972C0

Triadic

#66CC99
#CC9966

Split complementary

#82AB58
#547D2A

Using 9966cc

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

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

$9966cc: #9966cc;

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