Material Design Palette

Copy-ready color values

HEX#7EC581
RGBrgb(126, 197, 129)
HSLhsl(123, 38%, 63%)
HSVhsv(123, 36%, 77%)
CMYK approx.cmyk(36, 0, 35, 23)

Color value table

FormatValueCopy
HEX#7EC581
RGBrgb(126, 197, 129)
HSLhsl(123, 38%, 63%)
HSVhsv(123, 36%, 77%)
CMYK approx.cmyk(36, 0, 35, 23)
CSS keywordmaterial-green-700

Contrast and classification

LightLightness2.06:1Contrast with white10.19:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#8BCB8E

White 30%
#A5D6A7

White 70%
#D8EED9

White 90%
#F2F9F2

Black 10%
#71B174

Black 30%
#588A5A

Black 70%
#263B27

Black 90%
#0D140D

Harmony palettes

Complementary

#813A7E
#9F699D

Analogous

#87C581
#7EBD89

Triadic

#C5817E
#817EC5

Split complementary

#985D95
#6A3067

Using Material Green 700

Material Green 700 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-700: #7ec581;
}

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

$material-green-700: #7ec581;

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