Material Design Palette

Copy-ready color values

HEX#FFB547
RGBrgb(255, 181, 71)
HSLhsl(36, 100%, 64%)
HSVhsv(36, 72%, 100%)
CMYK approx.cmyk(0, 29, 72, 0)

Color value table

FormatValueCopy
HEX#FFB547
RGBrgb(255, 181, 71)
HSLhsl(36, 100%, 64%)
HSVhsv(36, 72%, 100%)
CMYK approx.cmyk(0, 29, 72, 0)
CSS keywordmaterial-orange-700

Contrast and classification

LightLightness1.76:1Contrast with white11.95:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFBC59

White 30%
#FFCB7E

White 70%
#FFE9C8

White 90%
#FFF8ED

Black 10%
#E6A340

Black 30%
#B37F32

Black 70%
#4D3615

Black 90%
#1A1207

Harmony palettes

Complementary

#004AB8
#3D75C9

Analogous

#F6B55D
#FFA854

Triadic

#B547FF
#47FFB5

Split complementary

#2E6BC5
#003D97

Using Material Orange 700

Material Orange 700 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-700: #ffb547;
}

.button-primary {
  background: var(--color-material-orange-700);
  color: #000000;
}

$material-orange-700: #ffb547;

// Tailwind arbitrary value
class="bg-[#ffb547] text-white"