Material Design Palette

Copy-ready color values

HEX#317033
RGBrgb(49, 112, 51)
HSLhsl(122, 39%, 32%)
HSVhsv(122, 56%, 44%)
CMYK approx.cmyk(56, 0, 54, 56)

Color value table

FormatValueCopy
HEX#317033
RGBrgb(49, 112, 51)
HSLhsl(122, 39%, 32%)
HSVhsv(122, 56%, 44%)
CMYK approx.cmyk(56, 0, 54, 56)
CSS keywordmaterial-green-200

Contrast and classification

DarkLightness6.01:1Contrast with white3.50:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#467E47

White 30%
#6F9B70

White 70%
#C1D4C2

White 90%
#EAF1EB

Black 10%
#2C652E

Black 30%
#224E24

Black 70%
#0F220F

Black 90%
#050B05

Harmony palettes

Complementary

#CE8FCC
#DAAAD8

Analogous

#397033
#31693A

Triadic

#703331
#333170

Split complementary

#D7A3D5
#A975A7

Using Material Green 200

Material Green 200 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-200: #317033;
}

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

$material-green-200: #317033;

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