Material Design Palette
Copy-ready color values
HEX
#F7AEC7RGB
rgb(247, 174, 199)HSL
hsl(339, 82%, 83%)HSV
hsv(339, 30%, 97%)CMYK approx.
cmyk(0, 30, 19, 3)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F7AEC7 | |
| RGB | rgb(247, 174, 199) | |
| HSL | hsl(339, 82%, 83%) | |
| HSV | hsv(339, 30%, 97%) | |
| CMYK approx. | cmyk(0, 30, 19, 3) | |
| CSS keyword | material-pink-1000 |
Contrast and classification
LightLightness1.77:1Contrast with white11.83:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#F8B6CD
White 30%#F9C6D8
White 70%#FDE7EE
White 90%#FEF7F9
Black 10%#DE9DB3
Black 30%#AD7A8B
Black 70%#4A343C
Black 90%#191114
Harmony palettes
Complementary
#085138#437B68Analogous
#EEAECD#F7B1C4Triadic
#AEC7F7#C7F7AESplit complementary
#34705C#07422EUsing Material Pink 1000
Material Pink 1000 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-1000: #f7aec7;
}
.button-primary {
background: var(--color-material-pink-1000);
color: #000000;
}
$material-pink-1000: #f7aec7;
// Tailwind arbitrary value
class="bg-[#f7aec7] text-white"