Material Design Palette

Copy-ready color values

HEX#CF97D9
RGBrgb(207, 151, 217)
HSLhsl(291, 46%, 72%)
HSVhsv(291, 30%, 85%)
CMYK approx.cmyk(5, 30, 0, 15)

Color value table

FormatValueCopy
HEX#CF97D9
RGBrgb(207, 151, 217)
HSLhsl(291, 46%, 72%)
HSVhsv(291, 30%, 85%)
CMYK approx.cmyk(5, 30, 0, 15)
CSS keywordmaterial-purple-900

Contrast and classification

LightLightness2.31:1Contrast with white9.08:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#D4A1DD

White 30%
#DDB6E4

White 70%
#F1E0F4

White 90%
#FAF5FB

Black 10%
#BA88C3

Black 30%
#916A98

Black 70%
#3E2D41

Black 90%
#150F16

Harmony palettes

Complementary

#306826
#628C5A

Analogous

#C897D8
#CF9FD1

Triadic

#97D9CF
#D9CF97

Split complementary

#55834D
#27551F

Using Material Purple 900

Material Purple 900 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-900: #cf97d9;
}

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

$material-purple-900: #cf97d9;

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