Material Design Palette

Copy-ready color values

HEX#CD1A57
RGBrgb(205, 26, 87)
HSLhsl(340, 77%, 45%)
HSVhsv(340, 87%, 80%)
CMYK approx.cmyk(0, 87, 58, 20)

Color value table

FormatValueCopy
HEX#CD1A57
RGBrgb(205, 26, 87)
HSLhsl(340, 77%, 45%)
HSVhsv(340, 87%, 80%)
CMYK approx.cmyk(0, 87, 58, 20)
CSS keywordmaterial-pink-400

Contrast and classification

DarkLightness5.41:1Contrast with white3.88:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#D23168

White 30%
#DC5F89

White 70%
#F0BACD

White 90%
#FAE8EE

Black 10%
#B9174E

Black 30%
#90123D

Black 70%
#3E081A

Black 90%
#150309

Harmony palettes

Complementary

#32E5A8
#63EBBD

Analogous

#B81A65
#CD2150

Triadic

#1A57CD
#57CD1A

Split complementary

#57EAB8
#29BC8A

Using Material Pink 400

Material Pink 400 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-400: #cd1a57;
}

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

$material-pink-400: #cd1a57;

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