Material Design Palette
Copy-ready color values
HEX
#E7EEA0RGB
rgb(231, 238, 160)HSL
hsl(65, 70%, 78%)HSV
hsv(65, 33%, 93%)CMYK approx.
cmyk(3, 0, 33, 7)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #E7EEA0 | |
| RGB | rgb(231, 238, 160) | |
| HSL | hsl(65, 70%, 78%) | |
| HSV | hsv(65, 33%, 93%) | |
| CMYK approx. | cmyk(3, 0, 33, 7) | |
| CSS keyword | material-lime-900 |
Contrast and classification
LightLightness1.23:1Contrast with white17.14:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#E9F0AA
White 30%#EEF3BD
White 70%#F8FAE3
White 90%#FDFDF6
Black 10%#D0D690
Black 30%#A2A770
Black 70%#454730
Black 90%#171810
Harmony palettes
Complementary
#18115F#4F4A85Analogous
#E8EEA9#E7E5A9Triadic
#EEA0E7#A0E7EESplit complementary
#423C7C#140E4EUsing Material Lime 900
Material Lime 900 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-900: #e7eea0;
}
.button-primary {
background: var(--color-material-lime-900);
color: #000000;
}
$material-lime-900: #e7eea0;
// Tailwind arbitrary value
class="bg-[#e7eea0] text-white"