Material Design Palette
Copy-ready color values
HEX
#AF9991RGB
rgb(175, 153, 145)HSL
hsl(16, 16%, 63%)HSV
hsv(16, 17%, 69%)CMYK approx.
cmyk(0, 13, 17, 31)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #AF9991 | |
| RGB | rgb(175, 153, 145) | |
| HSL | hsl(16, 16%, 63%) | |
| HSV | hsv(16, 17%, 69%) | |
| CMYK approx. | cmyk(0, 13, 17, 31) | |
| CSS keyword | material-brown-800 |
Contrast and classification
LightLightness2.70:1Contrast with white7.79:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#B7A39C
White 30%#C7B8B2
White 70%#E7E0DE
White 90%#F7F5F4
Black 10%#9E8A83
Black 30%#7B6B66
Black 70%#352E2C
Black 90%#120F0F
Harmony palettes
Complementary
#50666E#7A8B91Analogous
#AC9995#AF9892Triadic
#9991AF#91AF99Split complementary
#708288#42545AUsing Material Brown 800
Material Brown 800 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-800: #af9991;
}
.button-primary {
background: var(--color-material-brown-800);
color: #000000;
}
$material-brown-800: #af9991;
// Tailwind arbitrary value
class="bg-[#af9991] text-white"