Material Design Palette
Copy-ready color values
HEX
#FFC107RGB
rgb(255, 193, 7)HSL
hsl(45, 100%, 51%)HSV
hsv(45, 97%, 100%)CMYK approx.
cmyk(0, 24, 97, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFC107 | |
| RGB | rgb(255, 193, 7) | |
| HSL | hsl(45, 100%, 51%) | |
| HSV | hsv(45, 97%, 100%) | |
| CMYK approx. | cmyk(0, 24, 97, 0) | |
| CSS keyword | material-amber-500 |
Contrast and classification
DarkLightness1.63:1Contrast with white12.88:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFC720
White 30%#FFD451
White 70%#FFECB5
White 90%#FFF9E6
Black 10%#E6AE06
Black 30%#B38705
Black 70%#4D3A02
Black 90%#1A1301
Harmony palettes
Complementary
#003EF8#3D6CFAAnalogous
#F8C125#FFAB1DTriadic
#C107FF#07FFC1Split complementary
#2E61F9#0033CBUsing Material Amber 500
Material Amber 500 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-500: #ffc107;
}
.button-primary {
background: var(--color-material-amber-500);
color: #000000;
}
$material-amber-500: #ffc107;
// Tailwind arbitrary value
class="bg-[#ffc107] text-white"