Material Design Palette
Copy-ready color values
HEX
#FFDA6ARGB
rgb(255, 218, 106)HSL
hsl(45, 100%, 71%)HSV
hsv(45, 58%, 100%)CMYK approx.
cmyk(0, 15, 58, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFDA6A | |
| RGB | rgb(255, 218, 106) | |
| HSL | hsl(45, 100%, 71%) | |
| HSV | hsv(45, 58%, 100%) | |
| CMYK approx. | cmyk(0, 15, 58, 0) | |
| CSS keyword | material-amber-800 |
Contrast and classification
LightLightness1.36:1Contrast with white15.49:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFDE79
White 30%#FFE597
White 70%#FFF4D2
White 90%#FFFBF0
Black 10%#E6C45F
Black 30%#B3994A
Black 70%#4D4120
Black 90%#1A160B
Harmony palettes
Complementary
#002595#3D59AEAnalogous
#FBDA7C#FFCD77Triadic
#DA6AFF#6AFFDASplit complementary
#2E4CA8#001E7AUsing Material Amber 800
Material Amber 800 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-800: #ffda6a;
}
.button-primary {
background: var(--color-material-amber-800);
color: #000000;
}
$material-amber-800: #ffda6a;
// Tailwind arbitrary value
class="bg-[#ffda6a] text-white"