Material Design Palette
Copy-ready color values
HEX
#FF7245RGB
rgb(255, 114, 69)HSL
hsl(15, 100%, 64%)HSV
hsv(15, 73%, 100%)CMYK approx.
cmyk(0, 55, 73, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF7245 | |
| RGB | rgb(255, 114, 69) | |
| HSL | hsl(15, 100%, 64%) | |
| HSV | hsv(15, 73%, 100%) | |
| CMYK approx. | cmyk(0, 55, 73, 0) | |
| CSS keyword | material-deep-orange-600 |
Contrast and classification
LightLightness2.71:1Contrast with white7.74:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FF8058
White 30%#FF9C7D
White 70%#FFD5C7
White 90%#FFF1EC
Black 10%#E6673E
Black 30%#B35030
Black 70%#4D2215
Black 90%#1A0B07
Harmony palettes
Complementary
#008DBA#3DA8CBAnalogous
#EE725B#FF6D4ATriadic
#7245FF#45FF72Split complementary
#2EA2C6#007499Using Material Deep Orange 600
Material Deep Orange 600 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-600: #ff7245;
}
.button-primary {
background: var(--color-material-deep-orange-600);
color: #000000;
}
$material-deep-orange-600: #ff7245;
// Tailwind arbitrary value
class="bg-[#ff7245] text-white"