Material Design Palette

Copy-ready color values

HEX#E1EA88
RGBrgb(225, 234, 136)
HSLhsl(66, 70%, 73%)
HSVhsv(66, 42%, 92%)
CMYK approx.cmyk(4, 0, 42, 8)

Color value table

FormatValueCopy
HEX#E1EA88
RGBrgb(225, 234, 136)
HSLhsl(66, 70%, 73%)
HSVhsv(66, 42%, 92%)
CMYK approx.cmyk(4, 0, 42, 8)
CSS keywordmaterial-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
#544D98

Analogous

#E2EA93
#E1DE94

Triadic

#EA88E1
#88E1EA

Split complementary

#473F8F
#191162

Using 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"