Material Design Palette
Copy-ready color values
HEX
#ED427CRGB
rgb(237, 66, 124)HSL
hsl(340, 83%, 59%)HSV
hsv(340, 72%, 93%)CMYK approx.
cmyk(0, 72, 48, 7)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #ED427C | |
| RGB | rgb(237, 66, 124) | |
| HSL | hsl(340, 83%, 59%) | |
| HSV | hsv(340, 72%, 93%) | |
| CMYK approx. | cmyk(0, 72, 48, 7) | |
| CSS keyword | material-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#4BCDA1Analogous
#D8428A#ED4975Triadic
#427CED#7CED42Split complementary
#3DC999#0F9B6BUsing 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"