Apple Green

HEX: #8DB600 | Modern Palette

On White
2.38:1
FAIL
On Black
8.82:1
PASS

Color Specifications

HEX
#8DB600
RGB
141, 182, 0
HSL
73°, 100% ,71%
CMYK
22.53, 0, 100, 28.63

About Apple Green

Apple Green (#8DB600) is a color with RGB(141, 182, 0) and HSL(73.52°, 100%, 71.37%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #2900B6, which creates strong contrast. Its triadic palette includes #008DB6 and #B6008D. The name comes from Apple Green (English).

  • HEX: #8DB600
  • RGB: 141, 182, 0
  • HSL: 73.52°, 100%, 71.37%
  • Mood: Bold, Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #2900B6
  • Triadic colors: #008DB6, #B6008D
  • The name comes from Apple Green (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Apple Green #8DB600 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

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

Apple Green #8DB600 pairs with #2900B6 as its complementary color, and #008DB6 and #B6008D in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

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

APPLE GREEN
Analogous

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

APPLE GREEN
Triadic

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

APPLE GREEN
Split-Complementary

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

APPLE GREEN
Tetradic (Square)

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

APPLE GREEN
Monochromatic

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

APPLE GREEN

Shades & Tints

The shade and tint range for Apple Green #8DB600 moves from dark #141A00 tones through the base color to lighter #F9FFE6 tones, making it useful for depth, hierarchy, and background variation.

APPLE GREEN

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #ABAB0E
Protanopia #B2B200
Tritanopia #9BABAB
Achromatopsia #A8A8A8

Frequently Asked Questions

Apple Green (#8DB600) is a color with RGB(141, 182, 0) and HSL(73.52°, 100%, 71.37%).

#8DB600 pairs strongly with #2900B6 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8DB600 is suitable for Text, Button, Accent and works well with Neon, Warm styles.

#8DB600 is commonly associated with Bold, Playful.

The name Apple Green is linked to Apple Green from English, meaning A color resembling the skin of a green apple..

Name, History & Etymology

Origin Word Apple Green
Meaning A color resembling the skin of a green apple.
Language English
First Recorded Use Late 17th Century

History

The term 'apple green' has been used to describe a specific shade of green since at least the late 17th century. It gained popularity in fashion and interior design, particularly during the Rococo and Neoclassical periods, where naturalistic colors were favored. It has consistently been a recognized color name, often associated with freshness, nature, and vitality. Its precise shade can vary slightly depending on the context and era, but it generally refers to a light, yellowish-green.

First Recorded Use

1670s

Cultural Associations

Apple green is widely associated with nature, spring, and new growth. In many Western cultures, green is linked to luck, fertility, and environmentalism. The 'apple' descriptor specifically evokes the crispness and freshness of the fruit, making it a popular choice for products aiming to convey health, naturalness, or a vibrant aesthetic. It is often seen in children's products, garden decor, and spring fashion collections.

Similar Named Colors

Limerick #9DC209 ΔE 3.66
Android Green #A4C639 ΔE 5.11
Yellow Green #9ACD32 ΔE 6.19
Acid Green #B0BF1A ΔE 6.41

Code Snippets

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

/* Text */
.element {
    color: #8DB600;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #8DB600,
        #8E6DFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8DB600,
        #8E6DFF
    );
}

// SCSS variable
$apple-green: #8DB600;

// With RGB channels (useful for rgba() usage)
$apple-green-r: 141;
$apple-green-g: 182;
$apple-green-b: 0;

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