Apple Green
HEX: #8DB600 | Modern Palette
Color Specifications
#8DB600
141, 182, 0
73°, 100% ,71%
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
Color Palettes
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 #8DB600 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}