Material Design Palette

Copy-ready color values

HEX#B4C232
RGBrgb(180, 194, 50)
HSLhsl(66, 59%, 48%)
HSVhsv(66, 74%, 76%)
CMYK approx.cmyk(7, 0, 74, 24)

Color value table

FormatValueCopy
HEX#B4C232
RGBrgb(180, 194, 50)
HSLhsl(66, 59%, 48%)
HSVhsv(66, 74%, 76%)
CMYK approx.cmyk(7, 0, 74, 24)
CSS keywordmaterial-lime-400

Contrast and classification

DarkLightness1.96:1Contrast with white10.70:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#BCC847

White 30%
#CBD470

White 70%
#E9EDC2

White 90%
#F8F9EB

Black 10%
#A2AF2D

Black 30%
#7E8823

Black 70%
#363A0F

Black 90%
#121305

Harmony palettes

Complementary

#4B3DCD
#766CD9

Analogous

#B6C242
#B4B143

Triadic

#C232B4
#32B4C2

Split complementary

#6B60D6
#3E32A8

Using Material Lime 400

Material Lime 400 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-400: #b4c232;
}

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

$material-lime-400: #b4c232;

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