Web Safe Color

Copy-ready color values

HEX#6600CC
RGBrgb(102, 0, 204)
HSLhsl(270, 100%, 40%)
HSVhsv(270, 100%, 80%)
CMYK approx.cmyk(50, 100, 0, 20)

Color value table

FormatValueCopy
HEX#6600CC
RGBrgb(102, 0, 204)
HSLhsl(270, 100%, 40%)
HSVhsv(270, 100%, 80%)
CMYK approx.cmyk(50, 100, 0, 20)
CSS keyword6600cc

Contrast and classification

DarkLightness8.62:1Contrast with white2.44:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#751AD1

White 30%
#944DDB

White 70%
#D1B3F0

White 90%
#F0E6FA

Black 10%
#5C00B8

Black 30%
#47008F

Black 70%
#1F003D

Black 90%
#0A0014

Harmony palettes

Complementary

#99FF33
#B1FF64

Analogous

#5A00C0
#6618B4

Triadic

#00CC66
#CC6600

Split complementary

#ABFF58
#7DD12A

Using 6600cc

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

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

$6600cc: #6600cc;

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