Material Design Palette

Copy-ready color values

HEX#F66156
RGBrgb(246, 97, 86)
HSLhsl(4, 90%, 65%)
HSVhsv(4, 65%, 96%)
CMYK approx.cmyk(0, 61, 65, 4)

Color value table

FormatValueCopy
HEX#F66156
RGBrgb(246, 97, 86)
HSLhsl(4, 90%, 65%)
HSVhsv(4, 65%, 96%)
CMYK approx.cmyk(0, 61, 65, 4)
CSS keywordmaterial-red-600

Contrast and classification

LightLightness3.11:1Contrast with white6.76:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#F77167

White 30%
#F99089

White 70%
#FCD0CC

White 90%
#FEEFEE

Black 10%
#DD574D

Black 30%
#AC443C

Black 70%
#4A1D1A

Black 90%
#190A09

Harmony palettes

Complementary

#099EA9
#44B5BE

Analogous

#E46169
#F66057

Triadic

#6156F6
#56F661

Split complementary

#35AFB8
#07828B

Using Material Red 600

Material Red 600 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-600: #f66156;
}

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

$material-red-600: #f66156;

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