Web Safe Color

Copy-ready color values

HEX#9900FF
RGBrgb(153, 0, 255)
HSLhsl(276, 100%, 50%)
HSVhsv(276, 100%, 100%)
CMYK approx.cmyk(40, 100, 0, 0)

Color value table

FormatValueCopy
HEX#9900FF
RGBrgb(153, 0, 255)
HSLhsl(276, 100%, 50%)
HSVhsv(276, 100%, 100%)
CMYK approx.cmyk(40, 100, 0, 0)
CSS keyword9900ff

Contrast and classification

DarkLightness5.53:1Contrast with white3.80:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#A31AFF

White 30%
#B84DFF

White 70%
#E0B3FF

White 90%
#F5E6FF

Black 10%
#8A00E6

Black 30%
#6B00B3

Black 70%
#2E004D

Black 90%
#0F001A

Harmony palettes

Complementary

#66FF00
#8BFF3D

Analogous

#8700F3
#991FE0

Triadic

#00FF99
#FF9900

Split complementary

#82FF2E
#54D100

Using 9900ff

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

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

$9900ff: #9900ff;

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