Web Safe Color

Copy-ready color values

HEX#9966FF
RGBrgb(153, 102, 255)
HSLhsl(260, 100%, 70%)
HSVhsv(260, 60%, 100%)
CMYK approx.cmyk(40, 60, 0, 0)

Color value table

FormatValueCopy
HEX#9966FF
RGBrgb(153, 102, 255)
HSLhsl(260, 100%, 70%)
HSVhsv(260, 60%, 100%)
CMYK approx.cmyk(40, 60, 0, 0)
CSS keyword9966ff

Contrast and classification

LightLightness3.68:1Contrast with white5.70:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#A375FF

White 30%
#B894FF

White 70%
#E0D1FF

White 90%
#F5F0FF

Black 10%
#8A5CE6

Black 30%
#6B47B3

Black 70%
#2E1F4D

Black 90%
#0F0A1A

Harmony palettes

Complementary

#669900
#8BB13D

Analogous

#9366F3
#9978ED

Triadic

#66FF99
#FF9966

Split complementary

#82AB2E
#547D00

Using 9966ff

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

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

$9966ff: #9966ff;

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