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
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.
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.
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);
}