Material Design Palette

Copy-ready color values

HEX#E7EEA0
RGBrgb(231, 238, 160)
HSLhsl(65, 70%, 78%)
HSVhsv(65, 33%, 93%)
CMYK approx.cmyk(3, 0, 33, 7)

Color value table

FormatValueCopy
HEX#E7EEA0
RGBrgb(231, 238, 160)
HSLhsl(65, 70%, 78%)
HSVhsv(65, 33%, 93%)
CMYK approx.cmyk(3, 0, 33, 7)
CSS keywordmaterial-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
#4F4A85

Analogous

#E8EEA9
#E7E5A9

Triadic

#EEA0E7
#A0E7EE

Split complementary

#423C7C
#140E4E

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