Material Design Palette

Copy-ready color values

HEX#F44336
RGBrgb(244, 67, 54)
HSLhsl(4, 90%, 58%)
HSVhsv(4, 78%, 96%)
CMYK approx.cmyk(0, 73, 78, 4)

Color value table

FormatValueCopy
HEX#F44336
RGBrgb(244, 67, 54)
HSLhsl(4, 90%, 58%)
HSVhsv(4, 78%, 96%)
CMYK approx.cmyk(0, 73, 78, 4)
CSS keywordmaterial-red-500

Contrast and classification

LightLightness3.68:1Contrast with white5.70:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#F5564A

White 30%
#F77B72

White 70%
#FCC7C3

White 90%
#FEECEB

Black 10%
#DC3C31

Black 30%
#AB2F26

Black 70%
#491410

Black 90%
#180705

Harmony palettes

Complementary

#0BBCC9
#46CCD6

Analogous

#DF434D
#F44138

Triadic

#4336F4
#36F443

Split complementary

#37C8D3
#099AA5

Using Material Red 500

Material Red 500 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-500: #f44336;
}

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

$material-red-500: #f44336;

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