Web Safe Color

Copy-ready color values

HEX#CC99CC
RGBrgb(204, 153, 204)
HSLhsl(300, 33%, 70%)
HSVhsv(300, 25%, 80%)
CMYK approx.cmyk(0, 25, 0, 20)

Color value table

FormatValueCopy
HEX#CC99CC
RGBrgb(204, 153, 204)
HSLhsl(300, 33%, 70%)
HSVhsv(300, 25%, 80%)
CMYK approx.cmyk(0, 25, 0, 20)
CSS keywordcc99cc

Contrast and classification

LightLightness2.33:1Contrast with white9.00:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#D1A3D1

White 30%
#DBB8DB

White 70%
#F0E0F0

White 90%
#FAF5FA

Black 10%
#B88AB8

Black 30%
#8F6B8F

Black 70%
#3D2E3D

Black 90%
#140F14

Harmony palettes

Complementary

#336633
#648B64

Analogous

#C699CC
#CC9FC6

Triadic

#99CCCC
#CCCC99

Split complementary

#588258
#2A542A

Using Cc99cc

Cc99cc 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-cc99cc: #cc99cc;
}

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

$cc99cc: #cc99cc;

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