Material Design Palette

Copy-ready color values

HEX#FFE188
RGBrgb(255, 225, 136)
HSLhsl(45, 100%, 77%)
HSVhsv(45, 47%, 100%)
CMYK approx.cmyk(0, 12, 47, 0)

Color value table

FormatValueCopy
HEX#FFE188
RGBrgb(255, 225, 136)
HSLhsl(45, 100%, 77%)
HSVhsv(45, 47%, 100%)
CMYK approx.cmyk(0, 12, 47, 0)
CSS keywordmaterial-amber-900

Contrast and classification

LightLightness1.28:1Contrast with white16.38:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFE494

White 30%
#FFEAAC

White 70%
#FFF6DB

White 90%
#FFFCF3

Black 10%
#E6CB7A

Black 30%
#B39E5F

Black 70%
#4D4429

Black 90%
#1A170E

Harmony palettes

Complementary

#001E77
#3D5498

Analogous

#FBE196
#FFD693

Triadic

#E188FF
#88FFE1

Split complementary

#2E478F
#001962

Using Material Amber 900

Material Amber 900 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-900: #ffe188;
}

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

$material-amber-900: #ffe188;

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