Lime Green

HEX: #32CD32 | Modern Palette

On White
2.12:1
FAIL
On Black
9.91:1
PASS

Color Specifications

HEX
#32CD32
RGB
50, 205, 50
HSL
120°, 75% ,80%
CMYK
75.61, 0, 75.61, 19.61

About Lime Green

Lime Green (#32CD32) is a color with RGB(50, 205, 50) and HSL(120°, 75.61%, 80.39%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #CD32CD, which creates strong contrast. Its triadic palette includes #3232CD and #CD3232.

  • HEX: #32CD32
  • RGB: 50, 205, 50
  • HSL: 120°, 75.61%, 80.39%
  • Mood: Playful
  • Style: Cool
  • Use case: Text, Button, Background
  • Complementary color: #CD32CD
  • Triadic colors: #3232CD, #CD3232

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #32CD32 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Cool

Accessibility Simulation

Deuteranopia #B2B23C
Protanopia #C3C330
Tritanopia #5DC2C2
Achromatopsia #B2B2B2

Frequently Asked Questions

Lime Green (#32CD32) is a color with RGB(50, 205, 50) and HSL(120°, 75.61%, 80.39%).

#32CD32 pairs strongly with #CD32CD as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#32CD32 is suitable for Text, Button, Background and works well with Cool styles.

#32CD32 is commonly associated with Playful.

Similar Named Colors

Vivid Malachite #00CC33 ΔE 1.34
Harlequin Green #46CB18 ΔE 2.42
Malachite #0BDA51 ΔE 4.24
Dark Pastel Green #03C03C ΔE 4.28

Code Snippets

/* Background */
.element {
    background-color: #32CD32;
}

/* Text */
.element {
    color: #32CD32;
}

/* Border */
.element {
    border: 1px solid #32CD32;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #32CD32,
        #F3A7F3
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #32CD32,
        #F3A7F3
    );
}

// SCSS variable
$lime-green: #32CD32;

// With RGB channels (useful for rgba() usage)
$lime-green-r: 50;
$lime-green-g: 205;
$lime-green-b: 50;

// Usage
.element {
    background-color: $lime-green;
    color: rgba($lime-green-r, $lime-green-g, $lime-green-b, 0.8);
}