Material Design Palette
Copy-ready color values
HEX
#A37C04RGB
rgb(163, 124, 4)HSL
hsl(45, 95%, 33%)HSV
hsv(45, 98%, 64%)CMYK approx.
cmyk(0, 24, 98, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A37C04 | |
| RGB | rgb(163, 124, 4) | |
| HSL | hsl(45, 95%, 33%) | |
| HSV | hsv(45, 98%, 64%) | |
| CMYK approx. | cmyk(0, 24, 98, 36) | |
| CSS keyword | material-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#83A1FCAnalogous
#9E7C17#A36E12Triadic
#7C04A3#04A37CSplit complementary
#7999FC#4B6BCEUsing 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"