Material Design Palette

Copy-ready color values

HEX#9CA72B
RGBrgb(156, 167, 43)
HSLhsl(65, 59%, 41%)
HSVhsv(65, 74%, 65%)
CMYK approx.cmyk(7, 0, 74, 35)

Color value table

FormatValueCopy
HEX#9CA72B
RGBrgb(156, 167, 43)
HSLhsl(65, 59%, 41%)
HSVhsv(65, 74%, 65%)
CMYK approx.cmyk(7, 0, 74, 35)
CSS keywordmaterial-lime-300

Contrast and classification

DarkLightness2.63:1Contrast with white7.98:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#A6B040

White 30%
#BAC16B

White 70%
#E1E5BF

White 90%
#F5F6EA

Black 10%
#8C9627

Black 30%
#6D751E

Black 70%
#2F320D

Black 90%
#101104

Harmony palettes

Complementary

#6358D4
#8880DE

Analogous

#9DA739
#9C983A

Triadic

#A72B9C
#2B9CA7

Split complementary

#7F76DC
#5148AE

Using Material Lime 300

Material Lime 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-lime-300: #9ca72b;
}

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

$material-lime-300: #9ca72b;

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