Material Design Palette
Copy-ready color values
HEX
#A33816RGB
rgb(163, 56, 22)HSL
hsl(14, 76%, 36%)HSV
hsv(14, 87%, 64%)CMYK approx.
cmyk(0, 66, 87, 36)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A33816 | |
| RGB | rgb(163, 56, 22) | |
| HSL | hsl(14, 76%, 36%) | |
| HSV | hsv(14, 87%, 64%) | |
| CMYK approx. | cmyk(0, 66, 87, 36) | |
| CSS keyword | material-deep-orange-200 |
Contrast and classification
DarkLightness6.70:1Contrast with white3.13:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#AC4C2D
White 30%#BF745C
White 70%#E3C3B9
White 90%#F6EBE8
Black 10%#933214
Black 30%#72270F
Black 70%#311107
Black 90%#100602
Harmony palettes
Complementary
#5CC7E9#83D4EEAnalogous
#963827#A3341ATriadic
#3816A3#16A338Split complementary
#79D1ED#4BA3BFUsing Material Deep Orange 200
Material Deep Orange 200 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-deep-orange-200: #a33816;
}
.button-primary {
background: var(--color-material-deep-orange-200);
color: #ffffff;
}
$material-deep-orange-200: #a33816;
// Tailwind arbitrary value
class="bg-[#a33816] text-white"