Material Design Palette

Copy-ready color values

HEX#4CAF50
RGBrgb(76, 175, 80)
HSLhsl(122, 39%, 49%)
HSVhsv(122, 57%, 69%)
CMYK approx.cmyk(57, 0, 54, 31)

Color value table

FormatValueCopy
HEX#4CAF50
RGBrgb(76, 175, 80)
HSLhsl(122, 39%, 49%)
HSVhsv(122, 57%, 69%)
CMYK approx.cmyk(57, 0, 54, 31)
CSS keywordmaterial-green-500

Contrast and classification

DarkLightness2.78:1Contrast with white7.56:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#5EB762

White 30%
#82C785

White 70%
#C9E7CB

White 90%
#EDF7EE

Black 10%
#449E48

Black 30%
#357B38

Black 70%
#173518

Black 90%
#081208

Harmony palettes

Complementary

#B350AF
#C57AC2

Analogous

#58AF50
#4CA45B

Triadic

#AF504C
#504CAF

Split complementary

#C170BD
#934290

Using Material Green 500

Material Green 500 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-500: #4caf50;
}

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

$material-green-500: #4caf50;

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