Material Design Palette
Copy-ready color values
HEX
#FFD24CRGB
rgb(255, 210, 76)HSL
hsl(45, 100%, 65%)HSV
hsv(45, 70%, 100%)CMYK approx.
cmyk(0, 18, 70, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFD24C | |
| RGB | rgb(255, 210, 76) | |
| HSL | hsl(45, 100%, 65%) | |
| HSV | hsv(45, 70%, 100%) | |
| CMYK approx. | cmyk(0, 18, 70, 0) | |
| CSS keyword | material-amber-700 |
Contrast and classification
LightLightness1.44:1Contrast with white14.57:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFD75E
White 30%#FFE082
White 70%#FFF2C9
White 90%#FFFBED
Black 10%#E6BD44
Black 30%#B39335
Black 70%#4D3F17
Black 90%#1A1508
Harmony palettes
Complementary
#002DB3#3D5FC5Analogous
#FAD261#FFC25CTriadic
#D24CFF#4CFFD2Split complementary
#2E53C1#002593Using Material Amber 700
Material Amber 700 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-700: #ffd24c;
}
.button-primary {
background: var(--color-material-amber-700);
color: #000000;
}
$material-amber-700: #ffd24c;
// Tailwind arbitrary value
class="bg-[#ffd24c] text-white"