Material Design Palette

Copy-ready color values

HEX#F88E86
RGBrgb(248, 142, 134)
HSLhsl(4, 89%, 75%)
HSVhsv(4, 46%, 97%)
CMYK approx.cmyk(0, 43, 46, 3)

Color value table

FormatValueCopy
HEX#F88E86
RGBrgb(248, 142, 134)
HSLhsl(4, 89%, 75%)
HSVhsv(4, 46%, 97%)
CMYK approx.cmyk(0, 43, 46, 3)
CSS keywordmaterial-red-800

Contrast and classification

LightLightness2.28:1Contrast with white9.20:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#F99992

White 30%
#FAB0AA

White 70%
#FDDDDB

White 90%
#FEF4F3

Black 10%
#DF8079

Black 30%
#AE635E

Black 70%
#4A2B28

Black 90%
#190E0D

Harmony palettes

Complementary

#077179
#439399

Analogous

#EB8E94
#F88D87

Triadic

#8E86F8
#86F88E

Split complementary

#348B91
#065D63

Using Material Red 800

Material Red 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-red-800: #f88e86;
}

.button-primary {
  background: var(--color-material-red-800);
  color: #000000;
}

$material-red-800: #f88e86;

// Tailwind arbitrary value
class="bg-[#f88e86] text-white"