Material Design Palette
Copy-ready color values
HEX
#F278A1RGB
rgb(242, 120, 161)HSL
hsl(340, 82%, 71%)HSV
hsv(340, 50%, 95%)CMYK approx.
cmyk(0, 50, 33, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F278A1 | |
| RGB | rgb(242, 120, 161) | |
| HSL | hsl(340, 82%, 71%) | |
| HSV | hsv(340, 50%, 95%) | |
| CMYK approx. | cmyk(0, 50, 33, 5) | |
| CSS keyword | material-pink-800 |
Contrast and classification
LightLightness2.63:1Contrast with white7.98:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#F386AA
White 30%#F6A1BD
White 70%#FBD7E3
White 90%#FEF2F6
Black 10%#DA6C91
Black 30%#A95471
Black 70%#492430
Black 90%#180C10
Harmony palettes
Complementary
#0D875E#47A485Analogous
#E378AB#F27D9CTriadic
#78A1F2#A1F278Split complementary
#399D7B#0B6F4DUsing Material Pink 800
Material Pink 800 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-800: #f278a1;
}
.button-primary {
background: var(--color-material-pink-800);
color: #000000;
}
$material-pink-800: #f278a1;
// Tailwind arbitrary value
class="bg-[#f278a1] text-white"