Web Safe Color

Copy-ready color values

HEX#CC0033
RGBrgb(204, 0, 51)
HSLhsl(345, 100%, 40%)
HSVhsv(345, 100%, 80%)
CMYK approx.cmyk(0, 100, 75, 20)

Color value table

FormatValueCopy
HEX#CC0033
RGBrgb(204, 0, 51)
HSLhsl(345, 100%, 40%)
HSVhsv(345, 100%, 80%)
CMYK approx.cmyk(0, 100, 75, 20)
CSS keywordcc0033

Contrast and classification

DarkLightness5.81:1Contrast with white3.62:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#D11A47

White 30%
#DB4D70

White 70%
#F0B3C2

White 90%
#FAE6EB

Black 10%
#B8002E

Black 30%
#8F0024

Black 70%
#3D000F

Black 90%
#140005

Harmony palettes

Complementary

#33FFCC
#64FFD8

Analogous

#B40045
#CC062D

Triadic

#0033CC
#33CC00

Split complementary

#58FFD5
#2AD1A7

Using Cc0033

Cc0033 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-cc0033: #cc0033;
}

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

$cc0033: #cc0033;

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