Material Design Palette

Copy-ready color values

HEX#B93329
RGBrgb(185, 51, 41)
HSLhsl(4, 64%, 44%)
HSVhsv(4, 78%, 73%)
CMYK approx.cmyk(0, 72, 78, 27)

Color value table

FormatValueCopy
HEX#B93329
RGBrgb(185, 51, 41)
HSLhsl(4, 64%, 44%)
HSVhsv(4, 78%, 73%)
CMYK approx.cmyk(0, 72, 78, 27)
CSS keywordmaterial-red-300

Contrast and classification

DarkLightness5.88:1Contrast with white3.57:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#C0473E

White 30%
#CE7069

White 70%
#EAC2BF

White 90%
#F8EBEA

Black 10%
#A72E25

Black 30%
#82241D

Black 70%
#380F0C

Black 90%
#130504

Harmony palettes

Complementary

#46CCD6
#72D8E0

Analogous

#A9333A
#B9322A

Triadic

#3329B9
#29B933

Split complementary

#67D5DD
#39A7AF

Using Material Red 300

Material Red 300 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-300: #b93329;
}

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

$material-red-300: #b93329;

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