Material Design Palette

Copy-ready color values

HEX#94CF96
RGBrgb(148, 207, 150)
HSLhsl(122, 38%, 70%)
HSVhsv(122, 29%, 81%)
CMYK approx.cmyk(29, 0, 28, 19)

Color value table

FormatValueCopy
HEX#94CF96
RGBrgb(148, 207, 150)
HSLhsl(122, 38%, 70%)
HSVhsv(122, 29%, 81%)
CMYK approx.cmyk(29, 0, 28, 19)
CSS keywordmaterial-green-800

Contrast and classification

LightLightness1.81:1Contrast with white11.62:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#9FD4A1

White 30%
#B4DDB6

White 70%
#DFF1E0

White 90%
#F4FAF5

Black 10%
#85BA87

Black 30%
#689169

Black 70%
#2C3E2D

Black 90%
#0F150F

Harmony palettes

Complementary

#6B3069
#8F628D

Analogous

#9BCF96
#94C89D

Triadic

#CF9694
#9694CF

Split complementary

#865584
#582756

Using Material Green 800

Material Green 800 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-800: #94cf96;
}

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

$material-green-800: #94cf96;

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