Material Design Palette

Copy-ready color values

HEX#A39626
RGBrgb(163, 150, 38)
HSLhsl(54, 62%, 39%)
HSVhsv(54, 77%, 64%)
CMYK approx.cmyk(0, 8, 77, 36)

Color value table

FormatValueCopy
HEX#A39626
RGBrgb(163, 150, 38)
HSLhsl(54, 62%, 39%)
HSVhsv(54, 77%, 64%)
CMYK approx.cmyk(0, 8, 77, 36)
CSS keywordmaterial-yellow-200

Contrast and classification

DarkLightness3.02:1Contrast with white6.95:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#ACA13C

White 30%
#BFB667

White 70%
#E3E0BE

White 90%
#F6F5E9

Black 10%
#938722

Black 30%
#72691B

Black 70%
#312D0B

Black 90%
#100F04

Harmony palettes

Complementary

#5C69D9
#838DE2

Analogous

#A19635
#A38933

Triadic

#9626A3
#26A396

Split complementary

#7984E0
#4B56B2

Using Material Yellow 200

Material Yellow 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-yellow-200: #a39626;
}

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

$material-yellow-200: #a39626;

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