Material Design Palette
Copy-ready color values
HEX
#C2421ARGB
rgb(194, 66, 26)HSL
hsl(14, 76%, 43%)HSV
hsv(14, 87%, 76%)CMYK approx.
cmyk(0, 66, 87, 24)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #C2421A | |
| RGB | rgb(194, 66, 26) | |
| HSL | hsl(14, 76%, 43%) | |
| HSV | hsv(14, 87%, 76%) | |
| CMYK approx. | cmyk(0, 66, 87, 24) | |
| CSS keyword | material-deep-orange-300 |
Contrast and classification
DarkLightness5.14:1Contrast with white4.09:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#C85531
White 30%#D47B5F
White 70%#EDC6BA
White 90%#F9ECE8
Black 10%#AF3B17
Black 30%#882E12
Black 70%#3A1408
Black 90%#130703
Harmony palettes
Complementary
#3DBDE5#6CCDEBAnalogous
#B3422E#C23D1FTriadic
#421AC2#1AC242Split complementary
#60C9EA#329BBCUsing Material Deep Orange 300
Material Deep Orange 300 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-deep-orange-300: #c2421a;
}
.button-primary {
background: var(--color-material-deep-orange-300);
color: #ffffff;
}
$material-deep-orange-300: #c2421a;
// Tailwind arbitrary value
class="bg-[#c2421a] text-white"