Material Design Palette

Copy-ready color values

HEX#FF7245
RGBrgb(255, 114, 69)
HSLhsl(15, 100%, 64%)
HSVhsv(15, 73%, 100%)
CMYK approx.cmyk(0, 55, 73, 0)

Color value table

FormatValueCopy
HEX#FF7245
RGBrgb(255, 114, 69)
HSLhsl(15, 100%, 64%)
HSVhsv(15, 73%, 100%)
CMYK approx.cmyk(0, 55, 73, 0)
CSS keywordmaterial-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
#3DA8CB

Analogous

#EE725B
#FF6D4A

Triadic

#7245FF
#45FF72

Split complementary

#2EA2C6
#007499

Using 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"