Material Design Palette
Copy-ready color values
HEX
#856404RGB
rgb(133, 100, 4)HSL
hsl(45, 94%, 27%)HSV
hsv(45, 97%, 52%)CMYK approx.
cmyk(0, 25, 97, 48)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #856404 | |
| RGB | rgb(133, 100, 4) | |
| HSL | hsl(45, 94%, 27%) | |
| HSV | hsv(45, 97%, 52%) | |
| CMYK approx. | cmyk(0, 25, 97, 48) | |
| CSS keyword | material-amber-100 |
Contrast and classification
DarkLightness5.49:1Contrast with white3.82:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#91741D
White 30%#AA934F
White 70%#DAD1B4
White 90%#F3F0E6
Black 10%#785A04
Black 30%#5D4603
Black 70%#281E01
Black 90%#0D0A00
Harmony palettes
Complementary
#7A9BFB#9AB3FCAnalogous
#816413#855810Triadic
#640485#048564Split complementary
#92ADFC#647FCEUsing Material Amber 100
Material Amber 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-amber-100: #856404;
}
.button-primary {
background: var(--color-material-amber-100);
color: #ffffff;
}
$material-amber-100: #856404;
// Tailwind arbitrary value
class="bg-[#856404] text-white"