Material Design Palette
Copy-ready color values
HEX
#A9D9ABRGB
rgb(169, 217, 171)HSL
hsl(122, 39%, 76%)HSV
hsv(122, 22%, 85%)CMYK approx.
cmyk(22, 0, 21, 15)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A9D9AB | |
| RGB | rgb(169, 217, 171) | |
| HSL | hsl(122, 39%, 76%) | |
| HSV | hsv(122, 22%, 85%) | |
| CMYK approx. | cmyk(22, 0, 21, 15) | |
| CSS keyword | material-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#7F5A7DAnalogous
#AFD9AB#A9D3B1Triadic
#D9ABA9#ABA9D9Split complementary
#744D73#471F45Using 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"