Material Design Palette

Copy-ready color values

HEX#FAA59F
RGBrgb(250, 165, 159)
HSLhsl(4, 90%, 80%)
HSVhsv(4, 36%, 98%)
CMYK approx.cmyk(0, 34, 36, 2)

Color value table

FormatValueCopy
HEX#FAA59F
RGBrgb(250, 165, 159)
HSLhsl(4, 90%, 80%)
HSVhsv(4, 36%, 98%)
CMYK approx.cmyk(0, 34, 36, 2)
CSS keywordmaterial-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
#418286

Analogous

#F0A5AA
#FAA4A0

Triadic

#A59FFA
#9FFAA5

Split complementary

#32787D
#044A4F

Using 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"