Material Design Palette

Copy-ready color values

HEX#FFC3AF
RGBrgb(255, 195, 175)
HSLhsl(15, 100%, 84%)
HSVhsv(15, 31%, 100%)
CMYK approx.cmyk(0, 24, 31, 0)

Color value table

FormatValueCopy
HEX#FFC3AF
RGBrgb(255, 195, 175)
HSLhsl(15, 100%, 84%)
HSVhsv(15, 31%, 100%)
CMYK approx.cmyk(0, 24, 31, 0)
CSS keywordmaterial-deep-orange-1000

Contrast and classification

LightLightness1.54:1Contrast with white13.68:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFC9B7

White 30%
#FFD5C7

White 70%
#FFEDE7

White 90%
#FFF9F7

Black 10%
#E6B09E

Black 30%
#B3897B

Black 70%
#4D3B35

Black 90%
#1A1412

Harmony palettes

Complementary

#003C50
#3D6B7A

Analogous

#F8C3B9
#FFC1B1

Triadic

#C3AFFF
#AFFFC3

Split complementary

#2E5F70
#003142

Using Material Deep Orange 1000

Material Deep Orange 1000 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-1000: #ffc3af;
}

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

$material-deep-orange-1000: #ffc3af;

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