Material Design Palette

Copy-ready color values

HEX#51145C
RGBrgb(81, 20, 92)
HSLhsl(291, 64%, 22%)
HSVhsv(291, 78%, 36%)
CMYK approx.cmyk(12, 78, 0, 64)

Color value table

FormatValueCopy
HEX#51145C
RGBrgb(81, 20, 92)
HSLhsl(291, 64%, 22%)
HSVhsv(291, 78%, 36%)
CMYK approx.cmyk(12, 78, 0, 64)
CSS keywordmaterial-purple-100

Contrast and classification

DarkLightness13.09:1Contrast with white1.60:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#622C6C

White 30%
#855B8D

White 70%
#CBB9CE

White 90%
#EEE8EF

Black 10%
#491253

Black 30%
#390E40

Black 70%
#18061C

Black 90%
#080209

Harmony palettes

Complementary

#AEEBA3
#C1F0B9

Analogous

#4A145B
#511D53

Triadic

#145C51
#5C5114

Split complementary

#BDEFB4
#8FC186

Using Material Purple 100

Material Purple 100 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-100: #51145c;
}

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

$material-purple-100: #51145c;

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