Web Safe Color

Copy-ready color values

HEX#330033
RGBrgb(51, 0, 51)
HSLhsl(300, 100%, 10%)
HSVhsv(300, 100%, 20%)
CMYK approx.cmyk(0, 100, 0, 80)

Color value table

FormatValueCopy
HEX#330033
RGBrgb(51, 0, 51)
HSLhsl(300, 100%, 10%)
HSVhsv(300, 100%, 20%)
CMYK approx.cmyk(0, 100, 0, 80)
CSS keyword330033

Contrast and classification

DarkLightness17.67:1Contrast with white1.19:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#471A47

White 30%
#704D70

White 70%
#C2B3C2

White 90%
#EBE6EB

Black 10%
#2E002E

Black 30%
#240024

Black 70%
#0F000F

Black 90%
#050005

Harmony palettes

Complementary

#CCFFCC
#D8FFD8

Analogous

#2D0033
#33062D

Triadic

#003333
#333300

Split complementary

#D5FFD5
#A7D1A7

Using 330033

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

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

$330033: #330033;

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