Material Design Palette
Copy-ready color values
HEX
#317033RGB
rgb(49, 112, 51)HSL
hsl(122, 39%, 32%)HSV
hsv(122, 56%, 44%)CMYK approx.
cmyk(56, 0, 54, 56)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #317033 | |
| RGB | rgb(49, 112, 51) | |
| HSL | hsl(122, 39%, 32%) | |
| HSV | hsv(122, 56%, 44%) | |
| CMYK approx. | cmyk(56, 0, 54, 56) | |
| CSS keyword | material-green-200 |
Contrast and classification
DarkLightness6.01:1Contrast with white3.50:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#467E47
White 30%#6F9B70
White 70%#C1D4C2
White 90%#EAF1EB
Black 10%#2C652E
Black 30%#224E24
Black 70%#0F220F
Black 90%#050B05
Harmony palettes
Complementary
#CE8FCC#DAAAD8Analogous
#397033#31693ATriadic
#703331#333170Split complementary
#D7A3D5#A975A7Using Material Green 200
Material Green 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-green-200: #317033;
}
.button-primary {
background: var(--color-material-green-200);
color: #ffffff;
}
$material-green-200: #317033;
// Tailwind arbitrary value
class="bg-[#317033] text-white"