Material Design Palette

Copy-ready color values

HEX#DBB1E3
RGBrgb(219, 177, 227)
HSLhsl(290, 47%, 79%)
HSVhsv(290, 22%, 89%)
CMYK approx.cmyk(4, 22, 0, 11)

Color value table

FormatValueCopy
HEX#DBB1E3
RGBrgb(219, 177, 227)
HSLhsl(290, 47%, 79%)
HSVhsv(290, 22%, 89%)
CMYK approx.cmyk(4, 22, 0, 11)
CSS keywordmaterial-purple-1000

Contrast and classification

LightLightness1.84:1Contrast with white11.41:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#DFB9E6

White 30%
#E6C8EB

White 70%
#F4E8F7

White 90%
#FBF7FC

Black 10%
#C59FCC

Black 30%
#997C9F

Black 70%
#423544

Black 90%
#161217

Harmony palettes

Complementary

#244E1C
#597852

Analogous

#D6B1E2
#DBB7DD

Triadic

#B1E3DB
#E3DBB1

Split complementary

#4B6E45
#1E4017

Using Material Purple 1000

Material Purple 1000 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-1000: #dbb1e3;
}

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

$material-purple-1000: #dbb1e3;

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