Material Design Palette

Copy-ready color values

HEX#A33816
RGBrgb(163, 56, 22)
HSLhsl(14, 76%, 36%)
HSVhsv(14, 87%, 64%)
CMYK approx.cmyk(0, 66, 87, 36)

Color value table

FormatValueCopy
HEX#A33816
RGBrgb(163, 56, 22)
HSLhsl(14, 76%, 36%)
HSVhsv(14, 87%, 64%)
CMYK approx.cmyk(0, 66, 87, 36)
CSS keywordmaterial-deep-orange-200

Contrast and classification

DarkLightness6.70:1Contrast with white3.13:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#AC4C2D

White 30%
#BF745C

White 70%
#E3C3B9

White 90%
#F6EBE8

Black 10%
#933214

Black 30%
#72270F

Black 70%
#311107

Black 90%
#100602

Harmony palettes

Complementary

#5CC7E9
#83D4EE

Analogous

#963827
#A3341A

Triadic

#3816A3
#16A338

Split complementary

#79D1ED
#4BA3BF

Using Material Deep Orange 200

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

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

$material-deep-orange-200: #a33816;

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