Material Design Palette

Copy-ready color values

HEX#69BC6C
RGBrgb(105, 188, 108)
HSLhsl(122, 38%, 57%)
HSVhsv(122, 44%, 74%)
CMYK approx.cmyk(44, 0, 43, 26)

Color value table

FormatValueCopy
HEX#69BC6C
RGBrgb(105, 188, 108)
HSLhsl(122, 38%, 57%)
HSVhsv(122, 44%, 74%)
CMYK approx.cmyk(44, 0, 43, 26)
CSS keywordmaterial-green-600

Contrast and classification

LightLightness2.33:1Contrast with white9.01:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#78C37B

White 30%
#96D098

White 70%
#D2EBD3

White 90%
#F0F8F0

Black 10%
#5FA961

Black 30%
#4A844C

Black 70%
#203820

Black 90%
#0B130B

Harmony palettes

Complementary

#964393
#AF70AD

Analogous

#73BC6C
#69B276

Triadic

#BC6C69
#6C69BC

Split complementary

#A965A6
#7B3779

Using Material Green 600

Material Green 600 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-600: #69bc6c;
}

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

$material-green-600: #69bc6c;

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