Material Design Palette
Copy-ready color values
HEX
#3A853DRGB
rgb(58, 133, 61)HSL
hsl(122, 39%, 37%)HSV
hsv(122, 56%, 52%)CMYK approx.
cmyk(56, 0, 54, 48)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #3A853D | |
| RGB | rgb(58, 133, 61) | |
| HSL | hsl(122, 39%, 37%) | |
| HSV | hsv(122, 56%, 52%) | |
| CMYK approx. | cmyk(56, 0, 54, 48) | |
| CSS keyword | material-green-300 |
Contrast and classification
DarkLightness4.56:1Contrast with white4.60:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#4E9150
White 30%#75AA77
White 70%#C4DAC5
White 90%#EBF3EC
Black 10%#347837
Black 30%#295D2B
Black 70%#112812
Black 90%#060D06
Harmony palettes
Complementary
#C57AC2#D39AD1Analogous
#43853D#3A7C46Triadic
#853D3A#3D3A85Split complementary
#CF92CD#A2649FUsing Material Green 300
Material Green 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-green-300: #3a853d;
}
.button-primary {
background: var(--color-material-green-300);
color: #000000;
}
$material-green-300: #3a853d;
// Tailwind arbitrary value
class="bg-[#3a853d] text-white"