Material Design Palette

Copy-ready color values

HEX#E04D1E
RGBrgb(224, 77, 30)
HSLhsl(15, 76%, 50%)
HSVhsv(15, 87%, 88%)
CMYK approx.cmyk(0, 66, 87, 12)

Color value table

FormatValueCopy
HEX#E04D1E
RGBrgb(224, 77, 30)
HSLhsl(15, 76%, 50%)
HSVhsv(15, 87%, 88%)
CMYK approx.cmyk(0, 66, 87, 12)
CSS keywordmaterial-deep-orange-400

Contrast and classification

DarkLightness4.00:1Contrast with white5.25:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#E35F35

White 30%
#E98262

White 70%
#F6CABC

White 90%
#FCEDE9

Black 10%
#CA451B

Black 30%
#9D3615

Black 70%
#431709

Black 90%
#160803

Harmony palettes

Complementary

#1FB2E1
#55C4E8

Analogous

#CE4D35
#E04724

Triadic

#4D1EE0
#1EE04D

Split complementary

#47C0E6
#1992B9

Using Material Deep Orange 400

Material Deep Orange 400 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-400: #e04d1e;
}

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

$material-deep-orange-400: #e04d1e;

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