Material Design Palette
Copy-ready color values
HEX
#EF5D8FRGB
rgb(239, 93, 143)HSL
hsl(339, 82%, 65%)HSV
hsv(339, 61%, 94%)CMYK approx.
cmyk(0, 61, 40, 6)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #EF5D8F | |
| RGB | rgb(239, 93, 143) | |
| HSL | hsl(339, 82%, 65%) | |
| HSV | hsv(339, 61%, 94%) | |
| CMYK approx. | cmyk(0, 61, 40, 6) | |
| CSS keyword | material-pink-700 |
Contrast and classification
LightLightness3.17:1Contrast with white6.63:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#F16D9A
White 30%#F48EB1
White 70%#FACEDD
White 90%#FDEFF4
Black 10%#D75481
Black 30%#A74164
Black 70%#481C2B
Black 90%#18090E
Harmony palettes
Complementary
#10A270#49B892Analogous
#DD5D9B#EF6389Triadic
#5D8FEF#8FEF5DSplit complementary
#3BB38A#0D855CUsing Material Pink 700
Material Pink 700 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-700: #ef5d8f;
}
.button-primary {
background: var(--color-material-pink-700);
color: #000000;
}
$material-pink-700: #ef5d8f;
// Tailwind arbitrary value
class="bg-[#ef5d8f] text-white"