Material Design Palette
Copy-ready color values
HEX
#854F00RGB
rgb(133, 79, 0)HSL
hsl(36, 100%, 26%)HSV
hsv(36, 100%, 52%)CMYK approx.
cmyk(0, 41, 100, 48)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #854F00 | |
| RGB | rgb(133, 79, 0) | |
| HSL | hsl(36, 100%, 26%) | |
| HSV | hsv(36, 100%, 52%) | |
| CMYK approx. | cmyk(0, 41, 100, 48) | |
| CSS keyword | material-orange-100 |
Contrast and classification
DarkLightness6.74:1Contrast with white3.12:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#91611A
White 30%#AA844D
White 70%#DACAB3
White 90%#F3EDE6
Black 10%#784700
Black 30%#5D3700
Black 70%#281800
Black 90%#0D0800
Harmony palettes
Complementary
#7AB0FF#9AC3FFAnalogous
#7F4F10#854609Triadic
#4F0085#00854FSplit complementary
#92BEFF#6490D1Using Material Orange 100
Material Orange 100 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-100: #854f00;
}
.button-primary {
background: var(--color-material-orange-100);
color: #ffffff;
}
$material-orange-100: #854f00;
// Tailwind arbitrary value
class="bg-[#854f00] text-white"