Material Design Palette
Copy-ready color values
HEX
#838D24RGB
rgb(131, 141, 36)HSL
hsl(66, 59%, 35%)HSV
hsv(66, 74%, 55%)CMYK approx.
cmyk(7, 0, 74, 45)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #838D24 | |
| RGB | rgb(131, 141, 36) | |
| HSL | hsl(66, 59%, 35%) | |
| HSV | hsv(66, 74%, 55%) | |
| CMYK approx. | cmyk(7, 0, 74, 45) | |
| CSS keyword | material-lime-200 |
Contrast and classification
DarkLightness3.62:1Contrast with white5.80:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#8F983A
White 30%#A8AF66
White 70%#DADDBD
White 90%#F3F4E9
Black 10%#767F20
Black 30%#5C6319
Black 70%#272A0B
Black 90%#0D0E04
Harmony palettes
Complementary
#7C72DB#9B94E4Analogous
#848D2F#838031Triadic
#8D2483#24838DSplit complementary
#948BE1#665DB4Using Material Lime 200
Material Lime 200 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-200: #838d24;
}
.button-primary {
background: var(--color-material-lime-200);
color: #000000;
}
$material-lime-200: #838d24;
// Tailwind arbitrary value
class="bg-[#838d24] text-white"