Material Design Palette

Copy-ready color values

HEX#8E7065
RGBrgb(142, 112, 101)
HSLhsl(16, 17%, 48%)
HSVhsv(16, 29%, 56%)
CMYK approx.cmyk(0, 21, 29, 44)

Color value table

FormatValueCopy
HEX#8E7065
RGBrgb(142, 112, 101)
HSLhsl(16, 17%, 48%)
HSVhsv(16, 29%, 56%)
CMYK approx.cmyk(0, 21, 29, 44)
CSS keywordmaterial-brown-600

Contrast and classification

DarkLightness4.51:1Contrast with white4.66:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#997E74

White 30%
#B09B93

White 70%
#DDD4D1

White 90%
#F4F1F0

Black 10%
#80655B

Black 30%
#634E47

Black 70%
#2B221E

Black 90%
#0E0B0A

Harmony palettes

Complementary

#718F9A
#93AAB2

Analogous

#8A706A
#8E6F66

Triadic

#70658E
#658E70

Split complementary

#8BA3AC
#5D757E

Using Material Brown 600

Material Brown 600 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-brown-600: #8e7065;
}

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

$material-brown-600: #8e7065;

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