Material Design Palette
Copy-ready color values
HEX
#D5E259RGB
rgb(213, 226, 89)HSL
hsl(66, 70%, 62%)HSV
hsv(66, 61%, 89%)CMYK approx.
cmyk(6, 0, 61, 11)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #D5E259 | |
| RGB | rgb(213, 226, 89) | |
| HSL | hsl(66, 70%, 62%) | |
| HSV | hsv(66, 61%, 89%) | |
| CMYK approx. | cmyk(6, 0, 61, 11) | |
| CSS keyword | material-lime-600 |
Contrast and classification
LightLightness1.41:1Contrast with white14.85:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#D9E56A
White 30%#E2EB8B
White 70%#F2F6CD
White 90%#FBFCEE
Black 10%#C0CB50
Black 30%#959E3E
Black 70%#40441B
Black 90%#151709
Harmony palettes
Complementary
#2A1DA6#5D53BBAnalogous
#D7E268#D5D269Triadic
#E259D5#59D5E2Split complementary
#5046B6#221888Using Material Lime 600
Material Lime 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-lime-600: #d5e259;
}
.button-primary {
background: var(--color-material-lime-600);
color: #000000;
}
$material-lime-600: #d5e259;
// Tailwind arbitrary value
class="bg-[#d5e259] text-white"