Material Design Palette
Copy-ready color values
HEX
#C27400RGB
rgb(194, 116, 0)HSL
hsl(36, 100%, 38%)HSV
hsv(36, 100%, 76%)CMYK approx.
cmyk(0, 40, 100, 24)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #C27400 | |
| RGB | rgb(194, 116, 0) | |
| HSL | hsl(36, 100%, 38%) | |
| HSV | hsv(36, 100%, 76%) | |
| CMYK approx. | cmyk(0, 40, 100, 24) | |
| CSS keyword | material-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#6CA7FFAnalogous
#B97417#C2660ETriadic
#7400C2#00C274Split complementary
#60A0FF#3272D1Using 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"