Web Safe Color

Copy-ready color values

HEX#CC3399
RGBrgb(204, 51, 153)
HSLhsl(320, 60%, 50%)
HSVhsv(320, 75%, 80%)
CMYK approx.cmyk(0, 75, 25, 20)

Color value table

FormatValueCopy
HEX#CC3399
RGBrgb(204, 51, 153)
HSLhsl(320, 60%, 50%)
HSVhsv(320, 75%, 80%)
CMYK approx.cmyk(0, 75, 25, 20)
CSS keywordcc3399

Contrast and classification

DarkLightness4.67:1Contrast with white4.50:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#D147A3

White 30%
#DB70B8

White 70%
#F0C2E0

White 90%
#FAEBF5

Black 10%
#B82E8A

Black 30%
#8F246B

Black 70%
#3D0F2E

Black 90%
#14050F

Harmony palettes

Complementary

#33CC66
#64D88B

Analogous

#BA339F
#CC3F8D

Triadic

#3399CC
#99CC33

Split complementary

#58D582
#2AA754

Using Cc3399

Cc3399 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-cc3399: #cc3399;
}

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

$cc3399: #cc3399;

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