Material Design Palette

Copy-ready color values

HEX#FBBBB7
RGBrgb(251, 187, 183)
HSLhsl(4, 89%, 85%)
HSVhsv(4, 27%, 98%)
CMYK approx.cmyk(0, 25, 27, 2)

Color value table

FormatValueCopy
HEX#FBBBB7
RGBrgb(251, 187, 183)
HSLhsl(4, 89%, 85%)
HSVhsv(4, 27%, 98%)
CMYK approx.cmyk(0, 25, 27, 2)
CSS keywordmaterial-red-1000

Contrast and classification

LightLightness1.63:1Contrast with white12.89:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FBC2BE

White 30%
#FCCFCD

White 70%
#FEEBE9

White 90%
#FFF8F8

Black 10%
#E2A8A5

Black 30%
#B08380

Black 70%
#4B3837

Black 90%
#191312

Harmony palettes

Complementary

#044448
#407174

Analogous

#F3BBBF
#FBBBB7

Triadic

#BBB7FB
#B7FBBB

Split complementary

#316669
#03383B

Using Material Red 1000

Material Red 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-red-1000: #fbbbb7;
}

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

$material-red-1000: #fbbbb7;

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