Material Design Palette
Copy-ready color values
HEX
#A39626RGB
rgb(163, 150, 38)HSL
hsl(54, 62%, 39%)HSV
hsv(54, 77%, 64%)CMYK approx.
cmyk(0, 8, 77, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A39626 | |
| RGB | rgb(163, 150, 38) | |
| HSL | hsl(54, 62%, 39%) | |
| HSV | hsv(54, 77%, 64%) | |
| CMYK approx. | cmyk(0, 8, 77, 36) | |
| CSS keyword | material-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#838DE2Analogous
#A19635#A38933Triadic
#9626A3#26A396Split complementary
#7984E0#4B56B2Using 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"