Web Safe Color

Copy-ready color values

HEX#CC6699
RGBrgb(204, 102, 153)
HSLhsl(330, 50%, 60%)
HSVhsv(330, 50%, 80%)
CMYK approx.cmyk(0, 50, 25, 20)

Color value table

FormatValueCopy
HEX#CC6699
RGBrgb(204, 102, 153)
HSLhsl(330, 50%, 60%)
HSVhsv(330, 50%, 80%)
CMYK approx.cmyk(0, 50, 25, 20)
CSS keywordcc6699

Contrast and classification

LightLightness3.54:1Contrast with white5.93:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#D175A3

White 30%
#DB94B8

White 70%
#F0D1E0

White 90%
#FAF0F5

Black 10%
#B85C8A

Black 30%
#8F476B

Black 70%
#3D1F2E

Black 90%
#140A0F

Harmony palettes

Complementary

#339966
#64B18B

Analogous

#C0669F
#CC6C93

Triadic

#6699CC
#99CC66

Split complementary

#58AB82
#2A7D54

Using Cc6699

Cc6699 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-cc6699: #cc6699;
}

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

$cc6699: #cc6699;

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