Material Design Palette
Copy-ready color values
HEX
#4D362ERGB
rgb(77, 54, 46)HSL
hsl(15, 25%, 24%)HSV
hsv(15, 40%, 30%)CMYK approx.
cmyk(0, 30, 40, 70)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #4D362E | |
| RGB | rgb(77, 54, 46) | |
| HSL | hsl(15, 25%, 24%) | |
| HSV | hsv(15, 40%, 30%) | |
| CMYK approx. | cmyk(0, 30, 40, 70) | |
| CSS keyword | material-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#C4D6DCAnalogous
#4A3632#4D352FTriadic
#362E4D#2E4D36Split complementary
#C0D3D9#92A5ABUsing 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"