Lime green color: code #32CD32

Lime green

#32CD32

Color codes

  • HEX#32CD32
  • RGBrgb(50, 205, 50)
  • HSLhsl(120, 61%, 50%)
  • HSVhsv(120, 76%, 80%)
  • CMYKcmyk(76%, 0%, 76%, 20%)
  • LABlab(72.6% -67.1 61.4)
  • OKLCHoklch(74.2% 0.229 142.8)

About the color Lime green

Lime green has the HEX code #32CD32, which corresponds to rgb(50, 205, 50) in the RGB model. On the color wheel its hue sits at 120°, with 61% saturation and 50% lightness (hsl(120, 61%, 50%)).

Because of its hue it reads as a cool color: it tends to feel calm and distant, and it visually “recedes” in a composition.

As a background it calls for dark text: black reaches a 9.91:1 contrast ratio on it, versus 2.11:1 for white.

For print, the approximate conversion is cmyk(76%, 0%, 76%, 20%). Always confirm with your printer’s color profile, because the result depends on paper and ink.

Lighter tints

Darker shades

Color combinations with Lime green

Complementary

#32CD32 · #CD32CD

Analogous

#80CD32 · #32CD32 · #32CD80

Triadic

#32CD32 · #3232CD · #CD3232

Tetradic

#32CD32 · #3280CD · #CD32CD · #CD8032

Split-complementary

#32CD32 · #8032CD · #CD3280

Monochromatic

#196719 · #28A428 · #32CD32 · #6FDC6F · #ADEBAD

Lime green with white and black text

White text Aa Bb Cc 123
2.11:1 · fails WCAG
Black text Aa Bb Cc 123
9.91:1 · AAA

Test other pairs in the contrast checker

Lime green in CSS: limegreen is not lime

Here is a detail that trips up a lot of people: CSS has two similarly named colors. limegreen is the lime green on this page, #32CD32, rgb(50, 205, 50). lime, on the other hand, is #00FF00, the pure screen green with the green channel maxed out and the others at zero. Write color: lime; expecting a pleasant green and you get a fluorescent, almost harsh one. When in doubt, use the HEX value instead of the keyword.

Energy, freshness and attention

Perceptually, lime green sits on the edge between green and yellow. The eye picks it up fast, which is why it shows up in sports signage, safety gear and packaging that has to pop off a shelf. In Western contexts, the usual associations are freshness, youth, energy and “natural,” but overused it can look artificial or sour. As with any color meaning, it depends on culture, industry and what surrounds it.

Where to use it

Suggested palette

To balance the intensity, pair lime green with heavier or neutral colors:

Tip: if you need readable green text on a white background, darken the shade to something like #1F7A1F (contrast above 5:1). Dark mode works the other way around: the original #32CD32 already has good contrast on dark backgrounds. Test it in the contrast checker and generate variations with the palette generator.

How to use it in CSS

:root {
  --color-lime-green: #32CD32;
  --color-lime-green-rgb: 50, 205, 50;
}

.elemento {
  background-color: var(--color-lime-green);
  color: #000000;
}