Material Design Palette

Copy-ready color values

HEX#FF8660
RGBrgb(255, 134, 96)
HSLhsl(14, 100%, 69%)
HSVhsv(14, 62%, 100%)
CMYK approx.cmyk(0, 47, 62, 0)

Color value table

FormatValueCopy
HEX#FF8660
RGBrgb(255, 134, 96)
HSLhsl(14, 100%, 69%)
HSVhsv(14, 62%, 100%)
CMYK approx.cmyk(0, 47, 62, 0)
CSS keywordmaterial-deep-orange-700

Contrast and classification

LightLightness2.38:1Contrast with white8.83:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FF9270

White 30%
#FFAA90

White 70%
#FFDBCF

White 90%
#FFF3EF

Black 10%
#E67956

Black 30%
#B35E43

Black 70%
#4D281D

Black 90%
#1A0D0A

Harmony palettes

Complementary

#00799F
#3D99B6

Analogous

#F08673
#FF8165

Triadic

#8660FF
#60FF86

Split complementary

#2E91B0
#006382

Using Material Deep Orange 700

Material Deep Orange 700 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-700: #ff8660;
}

.button-primary {
  background: var(--color-material-deep-orange-700);
  color: #000000;
}

$material-deep-orange-700: #ff8660;

// Tailwind arbitrary value
class="bg-[#ff8660] text-white"