Material Design Palette

Copy-ready color values

HEX#641971
RGBrgb(100, 25, 113)
HSLhsl(291, 64%, 27%)
HSVhsv(291, 78%, 44%)
CMYK approx.cmyk(12, 78, 0, 56)

Color value table

FormatValueCopy
HEX#641971
RGBrgb(100, 25, 113)
HSLhsl(291, 64%, 27%)
HSVhsv(291, 78%, 44%)
CMYK approx.cmyk(12, 78, 0, 56)
CSS keywordmaterial-purple-200

Contrast and classification

DarkLightness10.94:1Contrast with white1.92:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#74307F

White 30%
#935E9C

White 70%
#D1BAD4

White 90%
#F0E8F1

Black 10%
#5A1766

Black 30%
#46124F

Black 70%
#1E0822

Black 90%
#0A030B

Harmony palettes

Complementary

#9BE68E
#B3ECA9

Analogous

#5B196F
#642466

Triadic

#197164
#716419

Split complementary

#ADEBA2
#7FBD74

Using Material Purple 200

Material Purple 200 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-200: #641971;
}

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

$material-purple-200: #641971;

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