Material Design Palette
Copy-ready color values
HEX
#FAA59FRGB
rgb(250, 165, 159)HSL
hsl(4, 90%, 80%)HSV
hsv(4, 36%, 98%)CMYK approx.
cmyk(0, 34, 36, 2)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FAA59F | |
| RGB | rgb(250, 165, 159) | |
| HSL | hsl(4, 90%, 80%) | |
| HSV | hsv(4, 36%, 98%) | |
| CMYK approx. | cmyk(0, 34, 36, 2) | |
| CSS keyword | material-red-900 |
Contrast and classification
LightLightness1.92:1Contrast with white10.95:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FBAEA9
White 30%#FCC0BC
White 70%#FEE4E2
White 90%#FFF6F5
Black 10%#E1958F
Black 30%#AF746F
Black 70%#4B3230
Black 90%#191110
Harmony palettes
Complementary
#055A60#418286Analogous
#F0A5AA#FAA4A0Triadic
#A59FFA#9FFAA5Split complementary
#32787D#044A4FUsing Material Red 900
Material Red 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-red-900: #faa59f;
}
.button-primary {
background: var(--color-material-red-900);
color: #000000;
}
$material-red-900: #faa59f;
// Tailwind arbitrary value
class="bg-[#faa59f] text-white"