Material Design Palette

Copy-ready color values

HEX#3A853D
RGBrgb(58, 133, 61)
HSLhsl(122, 39%, 37%)
HSVhsv(122, 56%, 52%)
CMYK approx.cmyk(56, 0, 54, 48)

Color value table

FormatValueCopy
HEX#3A853D
RGBrgb(58, 133, 61)
HSLhsl(122, 39%, 37%)
HSVhsv(122, 56%, 52%)
CMYK approx.cmyk(56, 0, 54, 48)
CSS keywordmaterial-green-300

Contrast and classification

DarkLightness4.56:1Contrast with white4.60:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#4E9150

White 30%
#75AA77

White 70%
#C4DAC5

White 90%
#EBF3EC

Black 10%
#347837

Black 30%
#295D2B

Black 70%
#112812

Black 90%
#060D06

Harmony palettes

Complementary

#C57AC2
#D39AD1

Analogous

#43853D
#3A7C46

Triadic

#853D3A
#3D3A85

Split complementary

#CF92CD
#A2649F

Using Material Green 300

Material Green 300 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-300: #3a853d;
}

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

$material-green-300: #3a853d;

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