Material Design Palette
Copy-ready color values
HEX
#6A4B3FRGB
rgb(106, 75, 63)HSL
hsl(17, 25%, 33%)HSV
hsv(17, 41%, 42%)CMYK approx.
cmyk(0, 29, 41, 58)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #6A4B3F | |
| RGB | rgb(106, 75, 63) | |
| HSL | hsl(17, 25%, 33%) | |
| HSV | hsv(17, 41%, 42%) | |
| CMYK approx. | cmyk(0, 29, 41, 58) | |
| CSS keyword | material-brown-400 |
Contrast and classification
DarkLightness7.80:1Contrast with white2.69:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#795D52
White 30%#978179
White 70%#D2C9C5
White 90%#F0EDEC
Black 10%#5F4439
Black 30%#4A352C
Black 70%#201713
Black 90%#0B0806
Harmony palettes
Complementary
#95B4C0#AEC6CFAnalogous
#664B44#6A4A40Triadic
#4B3F6A#3F6A4BSplit complementary
#A8C2CB#7A949DUsing Material Brown 400
Material Brown 400 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-400: #6a4b3f;
}
.button-primary {
background: var(--color-material-brown-400);
color: #ffffff;
}
$material-brown-400: #6a4b3f;
// Tailwind arbitrary value
class="bg-[#6a4b3f] text-white"