Material Design Palette

Copy-ready color values

HEX#9C2B23
RGBrgb(156, 43, 35)
HSLhsl(4, 63%, 37%)
HSVhsv(4, 78%, 61%)
CMYK approx.cmyk(0, 72, 78, 39)

Color value table

FormatValueCopy
HEX#9C2B23
RGBrgb(156, 43, 35)
HSLhsl(4, 63%, 37%)
HSVhsv(4, 78%, 61%)
CMYK approx.cmyk(0, 72, 78, 39)
CSS keywordmaterial-red-200

Contrast and classification

DarkLightness7.54:1Contrast with white2.78:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#A64039

White 30%
#BA6B65

White 70%
#E1BFBD

White 90%
#F5EAE9

Black 10%
#8C2720

Black 30%
#6D1E19

Black 70%
#2F0D0B

Black 90%
#100404

Harmony palettes

Complementary

#63D4DC
#88DEE4

Analogous

#8E2B32
#9C2A24

Triadic

#2B239C
#239C2B

Split complementary

#7FDCE2
#51AEB4

Using Material Red 200

Material Red 200 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-200: #9c2b23;
}

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

$material-red-200: #9c2b23;

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