Material Design Palette
Copy-ready color values
HEX
#CD1A57RGB
rgb(205, 26, 87)HSL
hsl(340, 77%, 45%)HSV
hsv(340, 87%, 80%)CMYK approx.
cmyk(0, 87, 58, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CD1A57 | |
| RGB | rgb(205, 26, 87) | |
| HSL | hsl(340, 77%, 45%) | |
| HSV | hsv(340, 87%, 80%) | |
| CMYK approx. | cmyk(0, 87, 58, 20) | |
| CSS keyword | material-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#63EBBDAnalogous
#B81A65#CD2150Triadic
#1A57CD#57CD1ASplit complementary
#57EAB8#29BC8AUsing 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"