Web Safe Color

Copy-ready color values

HEX#6600FF
RGBrgb(102, 0, 255)
HSLhsl(264, 100%, 50%)
HSVhsv(264, 100%, 100%)
CMYK approx.cmyk(60, 100, 0, 0)

Color value table

FormatValueCopy
HEX#6600FF
RGBrgb(102, 0, 255)
HSLhsl(264, 100%, 50%)
HSVhsv(264, 100%, 100%)
CMYK approx.cmyk(60, 100, 0, 0)
CSS keyword6600ff

Contrast and classification

DarkLightness6.98:1Contrast with white3.01:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#751AFF

White 30%
#944DFF

White 70%
#D1B3FF

White 90%
#F0E6FF

Black 10%
#5C00E6

Black 30%
#4700B3

Black 70%
#1F004D

Black 90%
#0A001A

Harmony palettes

Complementary

#99FF00
#B1FF3D

Analogous

#5A00ED
#661FE0

Triadic

#00FF66
#FF6600

Split complementary

#ABFF2E
#7DD100

Using 6600ff

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

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

$6600ff: #6600ff;

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