Material Design Palette

Copy-ready color values

HEX#C27400
RGBrgb(194, 116, 0)
HSLhsl(36, 100%, 38%)
HSVhsv(36, 100%, 76%)
CMYK approx.cmyk(0, 40, 100, 24)

Color value table

FormatValueCopy
HEX#C27400
RGBrgb(194, 116, 0)
HSLhsl(36, 100%, 38%)
HSVhsv(36, 100%, 76%)
CMYK approx.cmyk(0, 40, 100, 24)
CSS keywordmaterial-orange-300

Contrast and classification

DarkLightness3.63:1Contrast with white5.79:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#C8821A

White 30%
#D49E4D

White 70%
#EDD5B3

White 90%
#F9F1E6

Black 10%
#AF6800

Black 30%
#885100

Black 70%
#3A2300

Black 90%
#130C00

Harmony palettes

Complementary

#3D8BFF
#6CA7FF

Analogous

#B97417
#C2660E

Triadic

#7400C2
#00C274

Split complementary

#60A0FF
#3272D1

Using Material Orange 300

Material Orange 300 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-300: #c27400;
}

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

$material-orange-300: #c27400;

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