Material Design Palette
Copy-ready color values
HEX
#FFC166RGB
rgb(255, 193, 102)HSL
hsl(36, 100%, 70%)HSV
hsv(36, 60%, 100%)CMYK approx.
cmyk(0, 24, 60, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFC166 | |
| RGB | rgb(255, 193, 102) | |
| HSL | hsl(36, 100%, 70%) | |
| HSV | hsv(36, 60%, 100%) | |
| CMYK approx. | cmyk(0, 24, 60, 0) | |
| CSS keyword | material-orange-800 |
Contrast and classification
LightLightness1.61:1Contrast with white13.07:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFC775
White 30%#FFD494
White 70%#FFECD1
White 90%#FFF9F0
Black 10%#E6AE5C
Black 30%#B38747
Black 70%#4D3A1F
Black 90%#1A130A
Harmony palettes
Complementary
#003E99#3D6CB1Analogous
#F8C178#FFB671Triadic
#C166FF#66FFC1Split complementary
#2E61AB#00337DUsing Material Orange 800
Material Orange 800 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-800: #ffc166;
}
.button-primary {
background: var(--color-material-orange-800);
color: #000000;
}
$material-orange-800: #ffc166;
// Tailwind arbitrary value
class="bg-[#ffc166] text-white"