Material Design Palette

Copy-ready color values

HEX#89229B
RGBrgb(137, 34, 155)
HSLhsl(291, 64%, 37%)
HSVhsv(291, 78%, 61%)
CMYK approx.cmyk(12, 78, 0, 39)

Color value table

FormatValueCopy
HEX#89229B
RGBrgb(137, 34, 155)
HSLhsl(291, 64%, 37%)
HSVhsv(291, 78%, 61%)
CMYK approx.cmyk(12, 78, 0, 39)
CSS keywordmaterial-purple-400

Contrast and classification

DarkLightness7.59:1Contrast with white2.77:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#9538A5

White 30%
#AC64B9

White 70%
#DCBDE1

White 90%
#F3E9F5

Black 10%
#7B1F8C

Black 30%
#60186D

Black 70%
#290A2F

Black 90%
#0E0310

Harmony palettes

Complementary

#76DD64
#97E589

Analogous

#7D2299
#89318C

Triadic

#229B89
#9B8922

Split complementary

#8FE380
#61B552

Using Material Purple 400

Material Purple 400 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-400: #89229b;
}

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

$material-purple-400: #89229b;

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