Material Design Palette
Copy-ready color values
HEX
#F88E86RGB
rgb(248, 142, 134)HSL
hsl(4, 89%, 75%)HSV
hsv(4, 46%, 97%)CMYK approx.
cmyk(0, 43, 46, 3)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F88E86 | |
| RGB | rgb(248, 142, 134) | |
| HSL | hsl(4, 89%, 75%) | |
| HSV | hsv(4, 46%, 97%) | |
| CMYK approx. | cmyk(0, 43, 46, 3) | |
| CSS keyword | material-red-800 |
Contrast and classification
LightLightness2.28:1Contrast with white9.20:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#F99992
White 30%#FAB0AA
White 70%#FDDDDB
White 90%#FEF4F3
Black 10%#DF8079
Black 30%#AE635E
Black 70%#4A2B28
Black 90%#190E0D
Harmony palettes
Complementary
#077179#439399Analogous
#EB8E94#F88D87Triadic
#8E86F8#86F88ESplit complementary
#348B91#065D63Using Material Red 800
Material Red 800 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-800: #f88e86;
}
.button-primary {
background: var(--color-material-red-800);
color: #000000;
}
$material-red-800: #f88e86;
// Tailwind arbitrary value
class="bg-[#f88e86] text-white"