Material Design Palette

Copy-ready color values

HEX#285B2A
RGBrgb(40, 91, 42)
HSLhsl(122, 39%, 26%)
HSVhsv(122, 56%, 36%)
CMYK approx.cmyk(56, 0, 54, 64)

Color value table

FormatValueCopy
HEX#285B2A
RGBrgb(40, 91, 42)
HSLhsl(122, 39%, 26%)
HSVhsv(122, 56%, 36%)
CMYK approx.cmyk(56, 0, 54, 64)
CSS keywordmaterial-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
#E1BADF

Analogous

#2E5B2A
#285530

Triadic

#5B2A28
#2A285B

Split complementary

#DEB4DD
#B086AF

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