Material Design Palette

Copy-ready color values

HEX#ED427C
RGBrgb(237, 66, 124)
HSLhsl(340, 83%, 59%)
HSVhsv(340, 72%, 93%)
CMYK approx.cmyk(0, 72, 48, 7)

Color value table

FormatValueCopy
HEX#ED427C
RGBrgb(237, 66, 124)
HSLhsl(340, 83%, 59%)
HSVhsv(340, 72%, 93%)
CMYK approx.cmyk(0, 72, 48, 7)
CSS keywordmaterial-pink-600

Contrast and classification

LightLightness3.70:1Contrast with white5.67:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#EF5589

White 30%
#F27BA3

White 70%
#FAC6D8

White 90%
#FDECF2

Black 10%
#D53B70

Black 30%
#A62E57

Black 70%
#471425

Black 90%
#18070C

Harmony palettes

Complementary

#12BD83
#4BCDA1

Analogous

#D8428A
#ED4975

Triadic

#427CED
#7CED42

Split complementary

#3DC999
#0F9B6B

Using Material Pink 600

Material Pink 600 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-600: #ed427c;
}

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

$material-pink-600: #ed427c;

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