Material Design Palette

Copy-ready color values

HEX#FFAE95
RGBrgb(255, 174, 149)
HSLhsl(14, 100%, 79%)
HSVhsv(14, 42%, 100%)
CMYK approx.cmyk(0, 32, 42, 0)

Color value table

FormatValueCopy
HEX#FFAE95
RGBrgb(255, 174, 149)
HSLhsl(14, 100%, 79%)
HSVhsv(14, 42%, 100%)
CMYK approx.cmyk(0, 32, 42, 0)
CSS keywordmaterial-deep-orange-900

Contrast and classification

LightLightness1.79:1Contrast with white11.74:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFB6A0

White 30%
#FFC6B5

White 70%
#FFE7DF

White 90%
#FFF7F4

Black 10%
#E69D86

Black 30%
#B37A68

Black 70%
#4D342D

Black 90%
#1A110F

Harmony palettes

Complementary

#00516A
#3D7B8E

Analogous

#F5AEA2
#FFAB98

Triadic

#AE95FF
#95FFAE

Split complementary

#2E7085
#004257

Using Material Deep Orange 900

Material Deep Orange 900 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-900: #ffae95;
}

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

$material-deep-orange-900: #ffae95;

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