Material Design Palette
Copy-ready color values
HEX
#C29305RGB
rgb(194, 147, 5)HSL
hsl(45, 95%, 39%)HSV
hsv(45, 97%, 76%)CMYK approx.
cmyk(0, 24, 97, 24)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #C29305 | |
| RGB | rgb(194, 147, 5) | |
| HSL | hsl(45, 95%, 39%) | |
| HSV | hsv(45, 97%, 76%) | |
| CMYK approx. | cmyk(0, 24, 97, 24) | |
| CSS keyword | material-amber-300 |
Contrast and classification
DarkLightness2.81:1Contrast with white7.47:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#C89E1E
White 30%#D4B350
White 70%#EDDFB4
White 90%#F9F4E6
Black 10%#AF8405
Black 30%#886704
Black 70%#3A2C02
Black 90%#130F01
Harmony palettes
Complementary
#3D6CFA#6C8FFBAnalogous
#BC931C#C28216Triadic
#9305C2#05C293Split complementary
#6086FB#3259CDUsing Material Amber 300
Material Amber 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-amber-300: #c29305;
}
.button-primary {
background: var(--color-material-amber-300);
color: #000000;
}
$material-amber-300: #c29305;
// Tailwind arbitrary value
class="bg-[#c29305] text-white"