Material Design Palette
Copy-ready color values
HEX
#FFA829RGB
rgb(255, 168, 41)HSL
hsl(36, 100%, 58%)HSV
hsv(36, 84%, 100%)CMYK approx.
cmyk(0, 34, 84, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFA829 | |
| RGB | rgb(255, 168, 41) | |
| HSL | hsl(36, 100%, 58%) | |
| HSV | hsv(36, 84%, 100%) | |
| CMYK approx. | cmyk(0, 34, 84, 0) | |
| CSS keyword | material-orange-600 |
Contrast and classification
LightLightness1.93:1Contrast with white10.89:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFB13E
White 30%#FFC269
White 70%#FFE5BF
White 90%#FFF6EA
Black 10%#E69725
Black 30%#B3761D
Black 70%#4D320C
Black 90%#1A1104
Harmony palettes
Complementary
#0057D6#3D7FE0Analogous
#F5A843#FF9938Triadic
#A829FF#29FFA8Split complementary
#2E75DD#0047AFUsing Material Orange 600
Material Orange 600 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-600: #ffa829;
}
.button-primary {
background: var(--color-material-orange-600);
color: #000000;
}
$material-orange-600: #ffa829;
// Tailwind arbitrary value
class="bg-[#ffa829] text-white"