Material Design Palette

Copy-ready color values

HEX#4D362E
RGBrgb(77, 54, 46)
HSLhsl(15, 25%, 24%)
HSVhsv(15, 40%, 30%)
CMYK approx.cmyk(0, 30, 40, 70)

Color value table

FormatValueCopy
HEX#4D362E
RGBrgb(77, 54, 46)
HSLhsl(15, 25%, 24%)
HSVhsv(15, 40%, 30%)
CMYK approx.cmyk(0, 30, 40, 70)
CSS keywordmaterial-brown-200

Contrast and classification

DarkLightness11.15:1Contrast with white1.88:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#5F4A43

White 30%
#82726D

White 70%
#CAC3C0

White 90%
#EDEBEA

Black 10%
#453129

Black 30%
#362620

Black 70%
#17100E

Black 90%
#080505

Harmony palettes

Complementary

#B2C9D1
#C4D6DC

Analogous

#4A3632
#4D352F

Triadic

#362E4D
#2E4D36

Split complementary

#C0D3D9
#92A5AB

Using Material Brown 200

Material Brown 200 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-200: #4d362e;
}

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

$material-brown-200: #4d362e;

// Tailwind arbitrary value
class="bg-[#4d362e] text-white"