Material Design Palette
Copy-ready color values
HEX
#FFC3AFRGB
rgb(255, 195, 175)HSL
hsl(15, 100%, 84%)HSV
hsv(15, 31%, 100%)CMYK approx.
cmyk(0, 24, 31, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFC3AF | |
| RGB | rgb(255, 195, 175) | |
| HSL | hsl(15, 100%, 84%) | |
| HSV | hsv(15, 31%, 100%) | |
| CMYK approx. | cmyk(0, 24, 31, 0) | |
| CSS keyword | material-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#3D6B7AAnalogous
#F8C3B9#FFC1B1Triadic
#C3AFFF#AFFFC3Split complementary
#2E5F70#003142Using 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"