Material Design Palette
Copy-ready color values
HEX
#D73B30RGB
rgb(215, 59, 48)HSL
hsl(4, 68%, 52%)HSV
hsv(4, 78%, 84%)CMYK approx.
cmyk(0, 73, 78, 16)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #D73B30 | |
| RGB | rgb(215, 59, 48) | |
| HSL | hsl(4, 68%, 52%) | |
| HSV | hsv(4, 78%, 84%) | |
| CMYK approx. | cmyk(0, 73, 78, 16) | |
| CSS keyword | material-red-400 |
Contrast and classification
DarkLightness4.61:1Contrast with white4.56:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#DB4F45
White 30%#E3766E
White 70%#F3C4C1
White 90%#FBEBEA
Black 10%#C2352B
Black 30%#972922
Black 70%#41120E
Black 90%#160605
Harmony palettes
Complementary
#28C4CF#5CD2DBAnalogous
#C43B44#D73A31Triadic
#3B30D7#30D73BSplit complementary
#4FCFD8#21A1AAUsing Material Red 400
Material Red 400 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-400: #d73b30;
}
.button-primary {
background: var(--color-material-red-400);
color: #ffffff;
}
$material-red-400: #d73b30;
// Tailwind arbitrary value
class="bg-[#d73b30] text-white"