Material Design Palette
Copy-ready color values
HEX
#6B721ERGB
rgb(107, 114, 30)HSL
hsl(65, 58%, 28%)HSV
hsv(65, 74%, 45%)CMYK approx.
cmyk(6, 0, 74, 55)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #6B721E | |
| RGB | rgb(107, 114, 30) | |
| HSL | hsl(65, 58%, 28%) | |
| HSV | hsv(65, 74%, 45%) | |
| CMYK approx. | cmyk(6, 0, 74, 55) | |
| CSS keyword | material-lime-100 |
Contrast and classification
DarkLightness5.18:1Contrast with white4.05:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#7A8035
White 30%#979C62
White 70%#D3D5BC
White 90%#F0F1E9
Black 10%#60671B
Black 30%#4B5015
Black 70%#202209
Black 90%#0B0B03
Harmony palettes
Complementary
#948DE1#AEA8E8Analogous
#6C7227#6B6828Triadic
#721E6B#1E6B72Split complementary
#A7A2E6#7974B9Using Material Lime 100
Material Lime 100 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-100: #6b721e;
}
.button-primary {
background: var(--color-material-lime-100);
color: #ffffff;
}
$material-lime-100: #6b721e;
// Tailwind arbitrary value
class="bg-[#6b721e] text-white"