Material Design Palette
Copy-ready color values
HEX
#FFDAA3RGB
rgb(255, 218, 163)HSL
hsl(36, 100%, 82%)HSV
hsv(36, 36%, 100%)CMYK approx.
cmyk(0, 15, 36, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFDAA3 | |
| RGB | rgb(255, 218, 163) | |
| HSL | hsl(36, 100%, 82%) | |
| HSV | hsv(36, 36%, 100%) | |
| CMYK approx. | cmyk(0, 15, 36, 0) | |
| CSS keyword | material-orange-1000 |
Contrast and classification
LightLightness1.33:1Contrast with white15.81:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFDEAC
White 30%#FFE5BF
White 70%#FFF4E3
White 90%#FFFBF6
Black 10%#E6C493
Black 30%#B39972
Black 70%#4D4131
Black 90%#1A1610
Harmony palettes
Complementary
#00255C#3D5983Analogous
#FBDAAE#FFD3AATriadic
#DAA3FF#A3FFDASplit complementary
#2E4C79#001E4BUsing Material Orange 1000
Material 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-orange-1000: #ffdaa3;
}
.button-primary {
background: var(--color-material-orange-1000);
color: #000000;
}
$material-orange-1000: #ffdaa3;
// Tailwind arbitrary value
class="bg-[#ffdaa3] text-white"