Lawn Green

HEX: #7CFC00 | Modern Palette

On White
1.33:1
FAIL
On Black
15.78:1
PASS

Color Specifications

HEX
#7CFC00
RGB
124, 252, 0
HSL
90°, 100% ,98%
CMYK
50.79, 0, 100, 1.18

About Lawn Green

Lawn Green (#7CFC00) is a color with RGB(124, 252, 0) and HSL(90.48°, 100%, 98.82%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #8000FC, which creates strong contrast. Its triadic palette includes #007CFC and #FC007C. The name comes from Lawn Green (English).

  • HEX: #7CFC00
  • RGB: 124, 252, 0
  • HSL: 90.48°, 100%, 98.82%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #8000FC
  • Triadic colors: #007CFC, #FC007C
  • The name comes from Lawn Green (English).

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 #7CFC00 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #E1E123
Protanopia #F2F200
Tritanopia #9CEDED
Achromatopsia #DFDFDF

Frequently Asked Questions

Lawn Green (#7CFC00) is a color with RGB(124, 252, 0) and HSL(90.48°, 100%, 98.82%).

#7CFC00 pairs strongly with #8000FC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#7CFC00 is suitable for Text, Button, Background and works well with Neon, Cool styles.

#7CFC00 is commonly associated with Playful.

The name Lawn Green is linked to Lawn Green from English, meaning A green color resembling that of a well-maintained grass lawn..

Name, History & Etymology

Origin Word Lawn Green
Meaning A green color resembling that of a well-maintained grass lawn.
Language English
First Recorded Use Late 19th - Early 20th Century

History

The color 'Lawn Green' is a descriptive name that emerged from the common visual experience of a healthy, vibrant grass lawn. As color standardization became more important in various industries (paint, fashion, printing), descriptive names like this were adopted to provide a common reference point. It's part of a broader trend of naming colors after natural objects or phenomena (e.g., Sky Blue, Forest Green, Apple Red). Its hexadecimal representation #7cfc00 is a bright, yellowish-green, reflecting the fresh growth of grass.

First Recorded Use

The specific color name 'Lawn Green' likely gained popularity with the standardization of color names in paint, textile, and art industries. While the concept of a 'lawn green' existed earlier, its formal naming as a distinct color can be traced to this period. For example, Crayola introduced a 'Lawn Green' crayon in 1949.

Cultural Associations

Lawn Green evokes feelings of nature, freshness, growth, and tranquility. It is often associated with spring, outdoor spaces, and environmental themes. In design, it can be used to create a natural, organic, or vibrant feel. It's a common color in gardening, outdoor furniture, and children's products. It also has associations with sustainability and eco-friendliness due to its direct link to natural landscapes.

Similar Named Colors

Chartreuse #7FFF00 ΔE 0.65
Bright Green #66FF00 ΔE 1.79
French Lime #9EFD38 ΔE 3.02
Harlequin #3FFF00 ΔE 3.75

Code Snippets

/* Background */
.element {
    background-color: #7CFC00;
}

/* Text */
.element {
    color: #7CFC00;
}

/* Border */
.element {
    border: 1px solid #7CFC00;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #7CFC00,
        #FCF9FF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #7CFC00,
        #FCF9FF
    );
}

// SCSS variable
$lawn-green: #7CFC00;

// With RGB channels (useful for rgba() usage)
$lawn-green-r: 124;
$lawn-green-g: 252;
$lawn-green-b: 0;

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