Material Design Palette
Copy-ready color values
HEX
#FFEB3BRGB
rgb(255, 235, 59)HSL
hsl(54, 100%, 62%)HSV
hsv(54, 77%, 100%)CMYK approx.
cmyk(0, 8, 77, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFEB3B | |
| RGB | rgb(255, 235, 59) | |
| HSL | hsl(54, 100%, 62%) | |
| HSV | hsv(54, 77%, 100%) | |
| CMYK approx. | cmyk(0, 8, 77, 0) | |
| CSS keyword | material-yellow-500 |
Contrast and classification
LightLightness1.22:1Contrast with white17.20:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFED4F
White 30%#FFF176
White 70%#FFF9C4
White 90%#FFFDEB
Black 10%#E6D435
Black 30%#B3A529
Black 70%#4D4712
Black 90%#1A1806
Harmony palettes
Complementary
#0014C4#3D4CD2Analogous
#FDEB53#FFD650Triadic
#EB3BFF#3BFFEBSplit complementary
#2E3ECF#0010A1Using Material Yellow 500
Material Yellow 500 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-500: #ffeb3b;
}
.button-primary {
background: var(--color-material-yellow-500);
color: #000000;
}
$material-yellow-500: #ffeb3b;
// Tailwind arbitrary value
class="bg-[#ffeb3b] text-white"