Material Design Palette
Copy-ready color values
HEX
#E0AA06RGB
rgb(224, 170, 6)HSL
hsl(45, 95%, 45%)HSV
hsv(45, 97%, 88%)CMYK approx.
cmyk(0, 24, 97, 12)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #E0AA06 | |
| RGB | rgb(224, 170, 6) | |
| HSL | hsl(45, 95%, 45%) | |
| HSV | hsv(45, 97%, 88%) | |
| CMYK approx. | cmyk(0, 24, 97, 12) | |
| CSS keyword | material-amber-400 |
Contrast and classification
DarkLightness2.12:1Contrast with white9.92:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#E3B31F
White 30%#E9C451
White 70%#F6E6B4
White 90%#FCF7E6
Black 10%#CA9905
Black 30%#9D7704
Black 70%#433302
Black 90%#161101
Harmony palettes
Complementary
#1F55F9#557EFAAnalogous
#DAAA20#E0961ATriadic
#AA06E0#06E0AASplit complementary
#4774FA#1946CCUsing Material Amber 400
Material Amber 400 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-400: #e0aa06;
}
.button-primary {
background: var(--color-material-amber-400);
color: #000000;
}
$material-amber-400: #e0aa06;
// Tailwind arbitrary value
class="bg-[#e0aa06] text-white"