Material Design Palette

Copy-ready color values

HEX#FFF8B8
RGBrgb(255, 248, 184)
HSLhsl(54, 100%, 86%)
HSVhsv(54, 28%, 100%)
CMYK approx.cmyk(0, 3, 28, 0)

Color value table

FormatValueCopy
HEX#FFF8B8
RGBrgb(255, 248, 184)
HSLhsl(54, 100%, 86%)
HSVhsv(54, 28%, 100%)
CMYK approx.cmyk(0, 3, 28, 0)
CSS keywordmaterial-yellow-1000

Contrast and classification

LightLightness1.08:1Contrast with white19.37:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFF9BF

White 30%
#FFFACD

White 70%
#FFFDEA

White 90%
#FFFEF8

Black 10%
#E6DFA6

Black 30%
#B3AE81

Black 70%
#4D4A37

Black 90%
#1A1912

Harmony palettes

Complementary

#000747
#3D4373

Analogous

#FEF8C1
#FFF0C0

Triadic

#F8B8FF
#B8FFF8

Split complementary

#2E3468
#00063A

Using Material Yellow 1000

Material Yellow 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-yellow-1000: #fff8b8;
}

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

$material-yellow-1000: #fff8b8;

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