Material Design Palette
Copy-ready color values
HEX
#FFAE95RGB
rgb(255, 174, 149)HSL
hsl(14, 100%, 79%)HSV
hsv(14, 42%, 100%)CMYK approx.
cmyk(0, 32, 42, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFAE95 | |
| RGB | rgb(255, 174, 149) | |
| HSL | hsl(14, 100%, 79%) | |
| HSV | hsv(14, 42%, 100%) | |
| CMYK approx. | cmyk(0, 32, 42, 0) | |
| CSS keyword | material-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#3D7B8EAnalogous
#F5AEA2#FFAB98Triadic
#AE95FF#95FFAESplit complementary
#2E7085#004257Using 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"