Material Design Palette

Copy-ready color values

HEX#AC4ABD
RGBrgb(172, 74, 189)
HSLhsl(291, 47%, 52%)
HSVhsv(291, 61%, 74%)
CMYK approx.cmyk(9, 61, 0, 26)

Color value table

FormatValueCopy
HEX#AC4ABD
RGBrgb(172, 74, 189)
HSLhsl(291, 47%, 52%)
HSVhsv(291, 61%, 74%)
CMYK approx.cmyk(9, 61, 0, 26)
CSS keywordmaterial-purple-600

Contrast and classification

DarkLightness4.70:1Contrast with white4.47:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#B45CC4

White 30%
#C580D1

White 70%
#E6C9EB

White 90%
#F7EDF8

Black 10%
#9B43AA

Black 30%
#783484

Black 70%
#341639

Black 90%
#110713

Harmony palettes

Complementary

#53B542
#7CC76F

Analogous

#A04ABB
#AC58AF

Triadic

#4ABDAC
#BDAC4A

Split complementary

#72C264
#449436

Using Material Purple 600

Material Purple 600 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-material-purple-600: #ac4abd;
}

.button-primary {
  background: var(--color-material-purple-600);
  color: #ffffff;
}

$material-purple-600: #ac4abd;

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