CSS Named Color
Copy-ready color values
HEX
#32CD32RGB
rgb(50, 205, 50)HSL
hsl(120, 61%, 50%)HSV
hsv(120, 76%, 80%)CMYK approx.
cmyk(76, 0, 76, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #32CD32 | |
| RGB | rgb(50, 205, 50) | |
| HSL | hsl(120, 61%, 50%) | |
| HSV | hsv(120, 76%, 80%) | |
| CMYK approx. | cmyk(76, 0, 76, 20) | |
| CSS keyword | limegreen |
Contrast and classification
DarkLightness2.12:1Contrast with white9.91:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#47D247
White 30%#70DC70
White 70%#C2F0C2
White 90%#EBFAEB
Black 10%#2DB92D
Black 30%#239023
Black 70%#0F3E0F
Black 90%#051505
Harmony palettes
Complementary
#CD32CD#D963D9Analogous
#45CD32#32BA45Triadic
#CD3232#3232CDSplit complementary
#D657D6#A829A8Using Limegreen
Limegreen 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-limegreen: #32cd32;
}
.button-primary {
background: var(--color-limegreen);
color: #000000;
}
$limegreen: #32cd32;
// Tailwind arbitrary value
class="bg-[#32cd32] text-white"