Material Design Palette
Copy-ready color values
HEX
#E91E63RGB
rgb(233, 30, 99)HSL
hsl(340, 82%, 52%)HSV
hsv(340, 87%, 91%)CMYK approx.
cmyk(0, 87, 58, 9)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #E91E63 | |
| RGB | rgb(233, 30, 99) | |
| HSL | hsl(340, 82%, 52%) | |
| HSV | hsv(340, 87%, 91%) | |
| CMYK approx. | cmyk(0, 87, 58, 9) | |
| CSS keyword | material-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#4EE8B4Analogous
#D11E73#E9265BTriadic
#1E63E9#63E91ESplit complementary
#40E6AE#12B980Using 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"