Material Design Palette
Copy-ready color values
HEX
#285B2ARGB
rgb(40, 91, 42)HSL
hsl(122, 39%, 26%)HSV
hsv(122, 56%, 36%)CMYK approx.
cmyk(56, 0, 54, 64)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #285B2A | |
| RGB | rgb(40, 91, 42) | |
| HSL | hsl(122, 39%, 26%) | |
| HSV | hsv(122, 56%, 36%) | |
| CMYK approx. | cmyk(56, 0, 54, 64) | |
| CSS keyword | material-green-100 |
Contrast and classification
DarkLightness8.01:1Contrast with white2.62:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#3E6B3F
White 30%#698C6A
White 70%#BFCEBF
White 90%#EAEFEA
Black 10%#245226
Black 30%#1C401D
Black 70%#0C1B0D
Black 90%#040904
Harmony palettes
Complementary
#D7A4D5#E1BADFAnalogous
#2E5B2A#285530Triadic
#5B2A28#2A285BSplit complementary
#DEB4DD#B086AFUsing Material Green 100
Material Green 100 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-100: #285b2a;
}
.button-primary {
background: var(--color-material-green-100);
color: #ffffff;
}
$material-green-100: #285b2a;
// Tailwind arbitrary value
class="bg-[#285b2a] text-white"