Material Design Palette

Copy-ready color values

HEX#E91E63
RGBrgb(233, 30, 99)
HSLhsl(340, 82%, 52%)
HSVhsv(340, 87%, 91%)
CMYK approx.cmyk(0, 87, 58, 9)

Color value table

FormatValueCopy
HEX#E91E63
RGBrgb(233, 30, 99)
HSLhsl(340, 82%, 52%)
HSVhsv(340, 87%, 91%)
CMYK approx.cmyk(0, 87, 58, 9)
CSS keywordmaterial-pink-500

Contrast and classification

DarkLightness4.35:1Contrast with white4.83:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#EB3573

White 30%
#F06292

White 70%
#F8BCD0

White 90%
#FDE9EF

Black 10%
#D21B59

Black 30%
#A31545

Black 70%
#46091E

Black 90%
#17030A

Harmony palettes

Complementary

#16E19C
#4EE8B4

Analogous

#D11E73
#E9265B

Triadic

#1E63E9
#63E91E

Split complementary

#40E6AE
#12B980

Using Material Pink 500

Material Pink 500 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-pink-500: #e91e63;
}

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

$material-pink-500: #e91e63;

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