Material Design Palette

Copy-ready color values

HEX#3F2C25
RGBrgb(63, 44, 37)
HSLhsl(16, 26%, 20%)
HSVhsv(16, 41%, 25%)
CMYK approx.cmyk(0, 30, 41, 75)

Color value table

FormatValueCopy
HEX#3F2C25
RGBrgb(63, 44, 37)
HSLhsl(16, 26%, 20%)
HSVhsv(16, 41%, 25%)
CMYK approx.cmyk(0, 30, 41, 75)
CSS keywordmaterial-brown-100

Contrast and classification

DarkLightness13.14:1Contrast with white1.60:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#52413B

White 30%
#796B66

White 70%
#C5C0BE

White 90%
#ECEAE9

Black 10%
#392821

Black 30%
#2C1F1A

Black 70%
#130D0B

Black 90%
#060404

Harmony palettes

Complementary

#C0D3DA
#CFDEE3

Analogous

#3D2C28
#3F2B26

Triadic

#2C253F
#253F2C

Split complementary

#CBDBE1
#9DADB3

Using Material Brown 100

Material Brown 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-brown-100: #3f2c25;
}

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

$material-brown-100: #3f2c25;

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