Material Design Palette

Copy-ready color values

HEX#FF9A7A
RGBrgb(255, 154, 122)
HSLhsl(14, 100%, 74%)
HSVhsv(14, 52%, 100%)
CMYK approx.cmyk(0, 40, 52, 0)

Color value table

FormatValueCopy
HEX#FF9A7A
RGBrgb(255, 154, 122)
HSLhsl(14, 100%, 74%)
HSVhsv(14, 52%, 100%)
CMYK approx.cmyk(0, 40, 52, 0)
CSS keywordmaterial-deep-orange-800

Contrast and classification

LightLightness2.07:1Contrast with white10.16:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFA487

White 30%
#FFB8A2

White 70%
#FFE1D7

White 90%
#FFF5F2

Black 10%
#E68B6E

Black 30%
#B36C55

Black 70%
#4D2E25

Black 90%
#1A0F0C

Harmony palettes

Complementary

#006585
#3D8AA2

Analogous

#F39A8A
#FF967E

Triadic

#9A7AFF
#7AFF9A

Split complementary

#2E819B
#00536D

Using Material Deep Orange 800

Material Deep Orange 800 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-800: #ff9a7a;
}

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

$material-deep-orange-800: #ff9a7a;

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