Material Design Palette

Copy-ready color values

HEX#FFDA6A
RGBrgb(255, 218, 106)
HSLhsl(45, 100%, 71%)
HSVhsv(45, 58%, 100%)
CMYK approx.cmyk(0, 15, 58, 0)

Color value table

FormatValueCopy
HEX#FFDA6A
RGBrgb(255, 218, 106)
HSLhsl(45, 100%, 71%)
HSVhsv(45, 58%, 100%)
CMYK approx.cmyk(0, 15, 58, 0)
CSS keywordmaterial-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
#3D59AE

Analogous

#FBDA7C
#FFCD77

Triadic

#DA6AFF
#6AFFDA

Split complementary

#2E4CA8
#001E7A

Using 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"