Material Design Palette

Copy-ready color values

HEX#BFE2C0
RGBrgb(191, 226, 192)
HSLhsl(122, 38%, 82%)
HSVhsv(122, 15%, 89%)
CMYK approx.cmyk(15, 0, 15, 11)

Color value table

FormatValueCopy
HEX#BFE2C0
RGBrgb(191, 226, 192)
HSLhsl(122, 38%, 82%)
HSVhsv(122, 15%, 89%)
CMYK approx.cmyk(15, 0, 15, 11)
CSS keywordmaterial-green-1000

Contrast and classification

LightLightness1.41:1Contrast with white14.85:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#C5E5C6

White 30%
#D2EBD3

White 70%
#ECF6EC

White 90%
#F9FCF9

Black 10%
#ACCBAD

Black 30%
#869E86

Black 70%
#39443A

Black 90%
#131713

Harmony palettes

Complementary

#401D3F
#6E536D

Analogous

#C3E2C0
#BFDEC4

Triadic

#E2C0BF
#C0BFE2

Split complementary

#624662
#341834

Using Material Green 1000

Material Green 1000 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-1000: #bfe2c0;
}

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

$material-green-1000: #bfe2c0;

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