Material Design Palette

Copy-ready color values

HEX#FFC166
RGBrgb(255, 193, 102)
HSLhsl(36, 100%, 70%)
HSVhsv(36, 60%, 100%)
CMYK approx.cmyk(0, 24, 60, 0)

Color value table

FormatValueCopy
HEX#FFC166
RGBrgb(255, 193, 102)
HSLhsl(36, 100%, 70%)
HSVhsv(36, 60%, 100%)
CMYK approx.cmyk(0, 24, 60, 0)
CSS keywordmaterial-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
#3D6CB1

Analogous

#F8C178
#FFB671

Triadic

#C166FF
#66FFC1

Split complementary

#2E61AB
#00337D

Using 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"