Material Design Palette

Copy-ready color values

HEX#852D12
RGBrgb(133, 45, 18)
HSLhsl(14, 76%, 30%)
HSVhsv(14, 86%, 52%)
CMYK approx.cmyk(0, 66, 86, 48)

Color value table

FormatValueCopy
HEX#852D12
RGBrgb(133, 45, 18)
HSLhsl(14, 76%, 30%)
HSVhsv(14, 86%, 52%)
CMYK approx.cmyk(0, 66, 86, 48)
CSS keywordmaterial-deep-orange-100

Contrast and classification

DarkLightness8.82:1Contrast with white2.38:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#91422A

White 30%
#AA6C59

White 70%
#DAC0B8

White 90%
#F3EAE7

Black 10%
#782910

Black 30%
#5D200D

Black 70%
#280E05

Black 90%
#0D0502

Harmony palettes

Complementary

#7AD2ED
#9ADDF1

Analogous

#7A2D20
#852A15

Triadic

#2D1285
#12852D

Split complementary

#92DAF0
#64ACC2

Using Material Deep Orange 100

Material Deep Orange 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-deep-orange-100: #852d12;
}

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

$material-deep-orange-100: #852d12;

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