Material Design Palette

Copy-ready color values

HEX#A37C04
RGBrgb(163, 124, 4)
HSLhsl(45, 95%, 33%)
HSVhsv(45, 98%, 64%)
CMYK approx.cmyk(0, 24, 98, 36)

Color value table

FormatValueCopy
HEX#A37C04
RGBrgb(163, 124, 4)
HSLhsl(45, 95%, 33%)
HSVhsv(45, 98%, 64%)
CMYK approx.cmyk(0, 24, 98, 36)
CSS keywordmaterial-amber-200

Contrast and classification

DarkLightness3.86:1Contrast with white5.44:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#AC891D

White 30%
#BFA34F

White 70%
#E3D8B4

White 90%
#F6F2E6

Black 10%
#937004

Black 30%
#725703

Black 70%
#312501

Black 90%
#100C00

Harmony palettes

Complementary

#5C83FB
#83A1FC

Analogous

#9E7C17
#A36E12

Triadic

#7C04A3
#04A37C

Split complementary

#7999FC
#4B6BCE

Using Material Amber 200

Material Amber 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-amber-200: #a37c04;
}

.button-primary {
  background: var(--color-material-amber-200);
  color: #000000;
}

$material-amber-200: #a37c04;

// Tailwind arbitrary value
class="bg-[#a37c04] text-white"