Material Design Palette

Copy-ready color values

HEX#DBE670
RGBrgb(219, 230, 112)
HSLhsl(66, 70%, 67%)
HSVhsv(66, 51%, 90%)
CMYK approx.cmyk(5, 0, 51, 10)

Color value table

FormatValueCopy
HEX#DBE670
RGBrgb(219, 230, 112)
HSLhsl(66, 70%, 67%)
HSVhsv(66, 51%, 90%)
CMYK approx.cmyk(5, 0, 51, 10)
CSS keywordmaterial-lime-700

Contrast and classification

LightLightness1.35:1Contrast with white15.56:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#DFE97E

White 30%
#E6EE9B

White 70%
#F4F8D4

White 90%
#FBFDF1

Black 10%
#C5CF65

Black 30%
#99A14E

Black 70%
#424522

Black 90%
#16170B

Harmony palettes

Complementary

#24198F
#5950AA

Analogous

#DCE67D
#DBD87E

Triadic

#E670DB
#70DBE6

Split complementary

#4B42A3
#1E1575

Using Material Lime 700

Material Lime 700 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-700: #dbe670;
}

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

$material-lime-700: #dbe670;

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