Material Design Palette

Copy-ready color values

HEX#7F231C
RGBrgb(127, 35, 28)
HSLhsl(4, 64%, 30%)
HSVhsv(4, 78%, 50%)
CMYK approx.cmyk(0, 72, 78, 50)

Color value table

FormatValueCopy
HEX#7F231C
RGBrgb(127, 35, 28)
HSLhsl(4, 64%, 30%)
HSVhsv(4, 78%, 50%)
CMYK approx.cmyk(0, 72, 78, 50)
CSS keywordmaterial-red-100

Contrast and classification

DarkLightness9.72:1Contrast with white2.16:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#8C3933

White 30%
#A56560

White 70%
#D9BDBB

White 90%
#F2E9E8

Black 10%
#722019

Black 30%
#591914

Black 70%
#260B08

Black 90%
#0D0403

Harmony palettes

Complementary

#80DCE3
#9EE4EA

Analogous

#742328
#7F221D

Triadic

#231C7F
#1C7F23

Split complementary

#97E2E8
#69B4BA

Using Material Red 100

Material Red 100 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-100: #7f231c;
}

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

$material-red-100: #7f231c;

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