Material Design Palette

Copy-ready color values

HEX#857A1F
RGBrgb(133, 122, 31)
HSLhsl(54, 62%, 32%)
HSVhsv(54, 77%, 52%)
CMYK approx.cmyk(0, 8, 77, 48)

Color value table

FormatValueCopy
HEX#857A1F
RGBrgb(133, 122, 31)
HSLhsl(54, 62%, 32%)
HSVhsv(54, 77%, 52%)
CMYK approx.cmyk(0, 8, 77, 48)
CSS keywordmaterial-yellow-100

Contrast and classification

DarkLightness4.37:1Contrast with white4.80:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#918735

White 30%
#AAA262

White 70%
#DAD7BC

White 90%
#F3F2E9

Black 10%
#786E1C

Black 30%
#5D5516

Black 70%
#282509

Black 90%
#0D0C03

Harmony palettes

Complementary

#7A85E0
#9AA2E7

Analogous

#847A2B
#856F2A

Triadic

#7A1F85
#1F857A

Split complementary

#929BE6
#646DB8

Using Material Yellow 100

Material Yellow 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-yellow-100: #857a1f;
}

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

$material-yellow-100: #857a1f;

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