Material Design Palette
Copy-ready color values
HEX
#F44336RGB
rgb(244, 67, 54)HSL
hsl(4, 90%, 58%)HSV
hsv(4, 78%, 96%)CMYK approx.
cmyk(0, 73, 78, 4)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F44336 | |
| RGB | rgb(244, 67, 54) | |
| HSL | hsl(4, 90%, 58%) | |
| HSV | hsv(4, 78%, 96%) | |
| CMYK approx. | cmyk(0, 73, 78, 4) | |
| CSS keyword | material-red-500 |
Contrast and classification
LightLightness3.68:1Contrast with white5.70:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#F5564A
White 30%#F77B72
White 70%#FCC7C3
White 90%#FEECEB
Black 10%#DC3C31
Black 30%#AB2F26
Black 70%#491410
Black 90%#180705
Harmony palettes
Complementary
#0BBCC9#46CCD6Analogous
#DF434D#F44138Triadic
#4336F4#36F443Split complementary
#37C8D3#099AA5Using Material Red 500
Material Red 500 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-500: #f44336;
}
.button-primary {
background: var(--color-material-red-500);
color: #000000;
}
$material-red-500: #f44336;
// Tailwind arbitrary value
class="bg-[#f44336] text-white"