Green Yellow

HEX: #ADFF2F | Modern Palette

On White
1.23:1
FAIL
On Black
17.12:1
PASS

Color Specifications

HEX
#ADFF2F
RGB
173, 255, 47
HSL
83°, 100% ,59%
CMYK
32, 0, 82, 0

About Green Yellow

Green Yellow (#ADFF2F) is a color with RGB(173, 255, 47) and HSL(83.7°, 100%, 59.2%). It is commonly associated with Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #812FFF, which creates strong contrast. Its triadic palette includes #2FADFF and #FF2FAD. The name comes from Green Yellow (English).

  • HEX: #ADFF2F
  • RGB: 173, 255, 47
  • HSL: 83.7°, 100%, 59.2%
  • Mood: Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #812FFF
  • Triadic colors: #2FADFF, #FF2FAD
  • The name comes from Green Yellow (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 #ADFF2F from deepest shade to lightest tint.

Color Characteristics

Mood
Bold
Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #EBEB39
Protanopia #F8F82D
Tritanopia #C3F1F1
Achromatopsia #E8E8E8

Frequently Asked Questions

Green Yellow (#ADFF2F) is a color with RGB(173, 255, 47) and HSL(83.7°, 100%, 59.2%).

#ADFF2F pairs strongly with #812FFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#ADFF2F is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#ADFF2F is commonly associated with Bold.

The name Green Yellow is linked to Green Yellow from English, meaning A color that is an intermediate hue between green and yellow..

Name, History & Etymology

Origin Word Green Yellow
Meaning A color that is an intermediate hue between green and yellow.
Language English
First Recorded Use Late 17th - Early 18th Century (as a descriptive term)

History

The combination of green and yellow has been observed and described since antiquity. Ancient cultures, while not always having specific names for every intermediate hue, recognized the spectrum. In art and dyeing, mixing green and yellow pigments to achieve this shade was common. With the advent of modern color science and the development of color systems (like Munsell, CIE), 'green yellow' became a more precisely defined and named color. It is often associated with the color chart position between pure green and pure yellow. The hexadecimal code #adff2f specifically refers to a very bright, light green-yellow, often called Chartreuse Green or Lime Green in common parlance, which became popular in the late 20th and early 21st centuries.

First Recorded Use

The concept of 'green-yellow' as a distinct color or a blend of green and yellow has existed for centuries. As a specific named color, its usage became more formalized with the development of color theory and standardized color naming conventions. Early references often describe objects as being 'greenish yellow' or 'yellowish green'. The specific compound 'green yellow' as a named color, rather than a description, gained prominence with color charts and scientific classification.

Cultural Associations

Green-yellow colors are often associated with nature, spring, new growth, and vitality. Lighter, brighter shades like Chartreuse or Lime Green (which #adff2f closely resembles) gained significant popularity in fashion and design in the late 20th and early 21st centuries, often conveying a sense of freshness, energy, and modernity. It can also be seen as a playful or vibrant color. In some contexts, particularly with more muted or olive tones, it can be associated with military or utilitarian aesthetics. The specific vibrancy of #adff2f gives it a more energetic and contemporary feel.

Similar Named Colors

Spring Bud #A7FC00 ΔE 1.35
French Lime #9EFD38 ΔE 2.13
Lime #BFFF00 ΔE 3.39
Chartreuse #7FFF00 ΔE 4.43

Code Snippets

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

/* Text */
.element {
    color: #ADFF2F;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #ADFF2F,
        #812FFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #ADFF2F,
        #812FFF
    );
}

// SCSS variable
$green-yellow: #ADFF2F;

// With RGB channels (useful for rgba() usage)
$green-yellow-r: 173;
$green-yellow-g: 255;
$green-yellow-b: 47;

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