Material Design Palette
Copy-ready color values
HEX
#C2B32DRGB
rgb(194, 179, 45)HSL
hsl(54, 62%, 47%)HSV
hsv(54, 77%, 76%)CMYK approx.
cmyk(0, 8, 77, 24)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #C2B32D | |
| RGB | rgb(194, 179, 45) | |
| HSL | hsl(54, 62%, 47%) | |
| HSV | hsv(54, 77%, 76%) | |
| CMYK approx. | cmyk(0, 8, 77, 24) | |
| CSS keyword | material-yellow-300 |
Contrast and classification
DarkLightness2.15:1Contrast with white9.78:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#C8BB42
White 30%#D4CA6C
White 70%#EDE8C0
White 90%#F9F7EA
Black 10%#AFA129
Black 30%#887D20
Black 70%#3A360E
Black 90%#131205
Harmony palettes
Complementary
#3D4CD2#6C77DDAnalogous
#C0B33F#C2A33DTriadic
#B32DC2#2DC2B3Split complementary
#606CDA#323EACUsing Material Yellow 300
Material Yellow 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-yellow-300: #c2b32d;
}
.button-primary {
background: var(--color-material-yellow-300);
color: #000000;
}
$material-yellow-300: #c2b32d;
// Tailwind arbitrary value
class="bg-[#c2b32d] text-white"