Material Design Palette

Copy-ready color values

HEX#C2421A
RGBrgb(194, 66, 26)
HSLhsl(14, 76%, 43%)
HSVhsv(14, 87%, 76%)
CMYK approx.cmyk(0, 66, 87, 24)

Color value table

FormatValueCopy
HEX#C2421A
RGBrgb(194, 66, 26)
HSLhsl(14, 76%, 43%)
HSVhsv(14, 87%, 76%)
CMYK approx.cmyk(0, 66, 87, 24)
CSS keywordmaterial-deep-orange-300

Contrast and classification

DarkLightness5.14:1Contrast with white4.09:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#C85531

White 30%
#D47B5F

White 70%
#EDC6BA

White 90%
#F9ECE8

Black 10%
#AF3B17

Black 30%
#882E12

Black 70%
#3A1408

Black 90%
#130703

Harmony palettes

Complementary

#3DBDE5
#6CCDEB

Analogous

#B3422E
#C23D1F

Triadic

#421AC2
#1AC242

Split complementary

#60C9EA
#329BBC

Using Material Deep Orange 300

Material Deep Orange 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-deep-orange-300: #c2421a;
}

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

$material-deep-orange-300: #c2421a;

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