Material Design Palette
Copy-ready color values
HEX
#EDF2B8RGB
rgb(237, 242, 184)HSL
hsl(65, 69%, 84%)HSV
hsv(65, 24%, 95%)CMYK approx.
cmyk(2, 0, 24, 5)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #EDF2B8 | |
| RGB | rgb(237, 242, 184) | |
| HSL | hsl(65, 69%, 84%) | |
| HSV | hsv(65, 24%, 95%) | |
| CMYK approx. | cmyk(2, 0, 24, 5) | |
| CSS keyword | material-lime-1000 |
Contrast and classification
LightLightness1.17:1Contrast with white17.99:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#EFF3BF
White 30%#F2F6CD
White 70%#FAFBEA
White 90%#FDFEF8
Black 10%#D5DAA6
Black 30%#A6A981
Black 70%#474937
Black 90%#181812
Harmony palettes
Complementary
#120D47#4B4773Analogous
#EEF2BE#EDEBBFTriadic
#F2B8ED#B8EDF2Split complementary
#3D3968#0F0B3AUsing Material Lime 1000
Material Lime 1000 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-1000: #edf2b8;
}
.button-primary {
background: var(--color-material-lime-1000);
color: #000000;
}
$material-lime-1000: #edf2b8;
// Tailwind arbitrary value
class="bg-[#edf2b8] text-white"