Material Design Palette
Copy-ready color values
HEX
#E1EA88RGB
rgb(225, 234, 136)HSL
hsl(66, 70%, 73%)HSV
hsv(66, 42%, 92%)CMYK approx.
cmyk(4, 0, 42, 8)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #E1EA88 | |
| RGB | rgb(225, 234, 136) | |
| HSL | hsl(66, 70%, 73%) | |
| HSV | hsv(66, 42%, 92%) | |
| CMYK approx. | cmyk(4, 0, 42, 8) | |
| CSS keyword | material-lime-800 |
Contrast and classification
LightLightness1.29:1Contrast with white16.33:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#E4EC94
White 30%#EAF0AC
White 70%#F6F9DB
White 90%#FCFDF3
Black 10%#CBD37A
Black 30%#9EA45F
Black 70%#444629
Black 90%#17170E
Harmony palettes
Complementary
#1E1577#544D98Analogous
#E2EA93#E1DE94Triadic
#EA88E1#88E1EASplit complementary
#473F8F#191162Using Material Lime 800
Material Lime 800 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-800: #e1ea88;
}
.button-primary {
background: var(--color-material-lime-800);
color: #000000;
}
$material-lime-800: #e1ea88;
// Tailwind arbitrary value
class="bg-[#e1ea88] text-white"