Material Design Palette

Copy-ready color values

HEX#FFEE5A
RGBrgb(255, 238, 90)
HSLhsl(54, 100%, 68%)
HSVhsv(54, 65%, 100%)
CMYK approx.cmyk(0, 7, 65, 0)

Color value table

FormatValueCopy
HEX#FFEE5A
RGBrgb(255, 238, 90)
HSLhsl(54, 100%, 68%)
HSVhsv(54, 65%, 100%)
CMYK approx.cmyk(0, 7, 65, 0)
CSS keywordmaterial-yellow-600

Contrast and classification

LightLightness1.19:1Contrast with white17.63:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFF06B

White 30%
#FFF38C

White 70%
#FFFACE

White 90%
#FFFDEF

Black 10%
#E6D651

Black 30%
#B3A73F

Black 70%
#4D471B

Black 90%
#1A1809

Harmony palettes

Complementary

#0011A5
#3D4ABB

Analogous

#FDEE6E
#FFDC6C

Triadic

#EE5AFF
#5AFFEE

Split complementary

#2E3CB5
#000E87

Using Material Yellow 600

Material Yellow 600 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-yellow-600: #ffee5a;
}

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

$material-yellow-600: #ffee5a;

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