Material Design Palette

Copy-ready color values

HEX#856404
RGBrgb(133, 100, 4)
HSLhsl(45, 94%, 27%)
HSVhsv(45, 97%, 52%)
CMYK approx.cmyk(0, 25, 97, 48)

Color value table

FormatValueCopy
HEX#856404
RGBrgb(133, 100, 4)
HSLhsl(45, 94%, 27%)
HSVhsv(45, 97%, 52%)
CMYK approx.cmyk(0, 25, 97, 48)
CSS keywordmaterial-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
#9AB3FC

Analogous

#816413
#855810

Triadic

#640485
#048564

Split complementary

#92ADFC
#647FCE

Using 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"