Material Design Palette
Copy-ready color values
HEX
#FBBBB7RGB
rgb(251, 187, 183)HSL
hsl(4, 89%, 85%)HSV
hsv(4, 27%, 98%)CMYK approx.
cmyk(0, 25, 27, 2)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FBBBB7 | |
| RGB | rgb(251, 187, 183) | |
| HSL | hsl(4, 89%, 85%) | |
| HSV | hsv(4, 27%, 98%) | |
| CMYK approx. | cmyk(0, 25, 27, 2) | |
| CSS keyword | material-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#407174Analogous
#F3BBBF#FBBBB7Triadic
#BBB7FB#B7FBBBSplit complementary
#316669#03383BUsing 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"