Material Design Palette
Copy-ready color values
HEX
#F493B4RGB
rgb(244, 147, 180)HSL
hsl(340, 82%, 77%)HSV
hsv(340, 40%, 96%)CMYK approx.
cmyk(0, 40, 26, 4)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F493B4 | |
| RGB | rgb(244, 147, 180) | |
| HSL | hsl(340, 82%, 77%) | |
| HSV | hsv(340, 40%, 96%) | |
| CMYK approx. | cmyk(0, 40, 26, 4) | |
| CSS keyword | material-pink-900 |
Contrast and classification
LightLightness2.17:1Contrast with white9.68:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#F59EBC
White 30%#F7B3CB
White 70%#FCDFE9
White 90%#FEF4F8
Black 10%#DC84A2
Black 30%#AB677E
Black 70%#492C36
Black 90%#180F12
Harmony palettes
Complementary
#0B6C4B#468F76Analogous
#E893BC#F497B0Triadic
#93B4F4#B4F493Split complementary
#37866B#09593EUsing Material Pink 900
Material Pink 900 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-900: #f493b4;
}
.button-primary {
background: var(--color-material-pink-900);
color: #000000;
}
$material-pink-900: #f493b4;
// Tailwind arbitrary value
class="bg-[#f493b4] text-white"