Material Design Palette

Copy-ready color values

HEX#FFE9A6
RGBrgb(255, 233, 166)
HSLhsl(45, 100%, 83%)
HSVhsv(45, 35%, 100%)
CMYK approx.cmyk(0, 9, 35, 0)

Color value table

FormatValueCopy
HEX#FFE9A6
RGBrgb(255, 233, 166)
HSLhsl(45, 100%, 83%)
HSVhsv(45, 35%, 100%)
CMYK approx.cmyk(0, 9, 35, 0)
CSS keywordmaterial-amber-1000

Contrast and classification

LightLightness1.20:1Contrast with white17.46:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFEBAF

White 30%
#FFF0C1

White 70%
#FFF8E4

White 90%
#FFFDF6

Black 10%
#E6D295

Black 30%
#B3A374

Black 70%
#4D4632

Black 90%
#1A1711

Harmony palettes

Complementary

#001659
#3D4E81

Analogous

#FCE9B1
#FFE1AE

Triadic

#E9A6FF
#A6FFE9

Split complementary

#2E4077
#001249

Using Material Amber 1000

Material Amber 1000 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-1000: #ffe9a6;
}

.button-primary {
  background: var(--color-material-amber-1000);
  color: #000000;
}

$material-amber-1000: #ffe9a6;

// Tailwind arbitrary value
class="bg-[#ffe9a6] text-white"