Material Design Palette
Copy-ready color values
HEX
#9CA72BRGB
rgb(156, 167, 43)HSL
hsl(65, 59%, 41%)HSV
hsv(65, 74%, 65%)CMYK approx.
cmyk(7, 0, 74, 35)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #9CA72B | |
| RGB | rgb(156, 167, 43) | |
| HSL | hsl(65, 59%, 41%) | |
| HSV | hsv(65, 74%, 65%) | |
| CMYK approx. | cmyk(7, 0, 74, 35) | |
| CSS keyword | material-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#8880DEAnalogous
#9DA739#9C983ATriadic
#A72B9C#2B9CA7Split complementary
#7F76DC#5148AEUsing 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"