Material Design Palette

Copy-ready color values

HEX#854F00
RGBrgb(133, 79, 0)
HSLhsl(36, 100%, 26%)
HSVhsv(36, 100%, 52%)
CMYK approx.cmyk(0, 41, 100, 48)

Color value table

FormatValueCopy
HEX#854F00
RGBrgb(133, 79, 0)
HSLhsl(36, 100%, 26%)
HSVhsv(36, 100%, 52%)
CMYK approx.cmyk(0, 41, 100, 48)
CSS keywordmaterial-orange-100

Contrast and classification

DarkLightness6.74:1Contrast with white3.12:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#91611A

White 30%
#AA844D

White 70%
#DACAB3

White 90%
#F3EDE6

Black 10%
#784700

Black 30%
#5D3700

Black 70%
#281800

Black 90%
#0D0800

Harmony palettes

Complementary

#7AB0FF
#9AC3FF

Analogous

#7F4F10
#854609

Triadic

#4F0085
#00854F

Split complementary

#92BEFF
#6490D1

Using Material Orange 100

Material 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-orange-100: #854f00;
}

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

$material-orange-100: #854f00;

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