Material Design Palette
Copy-ready color values
HEX
#FFCE85RGB
rgb(255, 206, 133)HSL
hsl(36, 100%, 76%)HSV
hsv(36, 48%, 100%)CMYK approx.
cmyk(0, 19, 48, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFCE85 | |
| RGB | rgb(255, 206, 133) | |
| HSL | hsl(36, 100%, 76%) | |
| HSV | hsv(36, 48%, 100%) | |
| CMYK approx. | cmyk(0, 19, 48, 0) | |
| CSS keyword | material-orange-900 |
Contrast and classification
LightLightness1.46:1Contrast with white14.42:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFD391
White 30%#FFDDAA
White 70%#FFF0DA
White 90%#FFFAF3
Black 10%#E6B978
Black 30%#B3905D
Black 70%#4D3E28
Black 90%#1A150D
Harmony palettes
Complementary
#00317A#3D629AAnalogous
#F9CE94#FFC58ETriadic
#CE85FF#85FFCESplit complementary
#2E5692#002864Using Material Orange 900
Material 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-orange-900: #ffce85;
}
.button-primary {
background: var(--color-material-orange-900);
color: #000000;
}
$material-orange-900: #ffce85;
// Tailwind arbitrary value
class="bg-[#ffce85] text-white"