Web Safe Color

Copy-ready color values

HEX#CC00FF
RGBrgb(204, 0, 255)
HSLhsl(288, 100%, 50%)
HSVhsv(288, 100%, 100%)
CMYK approx.cmyk(20, 100, 0, 0)

Color value table

FormatValueCopy
HEX#CC00FF
RGBrgb(204, 0, 255)
HSLhsl(288, 100%, 50%)
HSVhsv(288, 100%, 100%)
CMYK approx.cmyk(20, 100, 0, 0)
CSS keywordcc00ff

Contrast and classification

DarkLightness4.19:1Contrast with white5.01:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#D11AFF

White 30%
#DB4DFF

White 70%
#F0B3FF

White 90%
#FAE6FF

Black 10%
#B800E6

Black 30%
#8F00B3

Black 70%
#3D004D

Black 90%
#14001A

Harmony palettes

Complementary

#33FF00
#64FF3D

Analogous

#B400F9
#CC1FE0

Triadic

#00FFCC
#FFCC00

Split complementary

#58FF2E
#2AD100

Using Cc00ff

Cc00ff 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-cc00ff: #cc00ff;
}

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

$cc00ff: #cc00ff;

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