Material Design Palette

Copy-ready color values

HEX#B863C6
RGBrgb(184, 99, 198)
HSLhsl(292, 46%, 58%)
HSVhsv(292, 50%, 78%)
CMYK approx.cmyk(7, 50, 0, 22)

Color value table

FormatValueCopy
HEX#B863C6
RGBrgb(184, 99, 198)
HSLhsl(292, 46%, 58%)
HSVhsv(292, 50%, 78%)
CMYK approx.cmyk(7, 50, 0, 22)
CSS keywordmaterial-purple-700

Contrast and classification

LightLightness3.72:1Contrast with white5.64:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#BF73CC

White 30%
#CD92D7

White 70%
#EAD0EE

White 90%
#F8EFF9

Black 10%
#A659B2

Black 30%
#81458B

Black 70%
#371E3B

Black 90%
#120A14

Harmony palettes

Complementary

#479C39
#73B469

Analogous

#AE63C4
#B86FBA

Triadic

#63C6B8
#C6B863

Split complementary

#68AE5D
#3A802F

Using Material Purple 700

Material Purple 700 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-700: #b863c6;
}

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

$material-purple-700: #b863c6;

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