Material Design Palette

Copy-ready color values

HEX#A9D9AB
RGBrgb(169, 217, 171)
HSLhsl(122, 39%, 76%)
HSVhsv(122, 22%, 85%)
CMYK approx.cmyk(22, 0, 21, 15)

Color value table

FormatValueCopy
HEX#A9D9AB
RGBrgb(169, 217, 171)
HSLhsl(122, 39%, 76%)
HSVhsv(122, 22%, 85%)
CMYK approx.cmyk(22, 0, 21, 15)
CSS keywordmaterial-green-900

Contrast and classification

LightLightness1.59:1Contrast with white13.20:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#B2DDB3

White 30%
#C3E4C4

White 70%
#E5F4E6

White 90%
#F6FBF7

Black 10%
#98C39A

Black 30%
#769878

Black 70%
#334133

Black 90%
#111611

Harmony palettes

Complementary

#562654
#7F5A7D

Analogous

#AFD9AB
#A9D3B1

Triadic

#D9ABA9
#ABA9D9

Split complementary

#744D73
#471F45

Using Material Green 900

Material Green 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-green-900: #a9d9ab;
}

.button-primary {
  background: var(--color-material-green-900);
  color: #000000;
}

$material-green-900: #a9d9ab;

// Tailwind arbitrary value
class="bg-[#a9d9ab] text-white"