Vivid Lime Green
HEX: #A6D608 | Modern Palette
Color Specifications
#A6D608
166, 214, 8
73°, 96% ,83%
22.43, 0, 96.26, 16.08
About Vivid Lime Green
Vivid Lime Green (#A6D608) is a color with RGB(166, 214, 8) and HSL(73.98°, 96.26%, 83.92%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #3808D6, which creates strong contrast. Its triadic palette includes #08A6D6 and #D608A6. The name comes from Vivid Lime Green (English).
- HEX: #A6D608
- RGB: 166, 214, 8
- HSL: 73.98°, 96.26%, 83.92%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #3808D6
- Triadic colors: #08A6D6, #D608A6
- The name comes from Vivid Lime 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 #A6D608 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'lime green' itself is named after the citrus fruit, the lime, which has been cultivated for centuries. The use of 'lime' to describe a color dates back to at least the late 1800s. The addition of 'vivid' serves to differentiate a particularly bright and saturated version of lime green from more muted or pastel variations. This kind of compound color naming became more common as industries required more specific color communication.
First Recorded Use
While 'lime green' as a color term emerged earlier (late 19th/early 20th century), the specific descriptor 'vivid lime green' likely gained popularity and common usage in the latter half of the 20th century, particularly with the advent of more precise color naming in fashion, design, and digital media. It emphasizes a particular intensity.
Cultural Associations
Vivid lime green is often associated with freshness, energy, youth, and nature. In fashion and design, it can be used to create a bold statement or a playful aesthetic. It has seen various resurgences in popularity, often tied to retro (e.g., 1960s/70s psychedelic, 1980s neon) and contemporary trends that favor bright, optimistic palettes. It can also evoke feelings of spring, growth, and vitality.
Code Snippets
/* Background */
.element {
background-color: #A6D608;
}
/* Text */
.element {
color: #A6D608;
}
/* Border */
.element {
border: 1px solid #A6D608;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A6D608,
#C1AFFD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A6D608,
#C1AFFD
);
}
// SCSS variable
$vivid-lime-green: #A6D608;
// With RGB channels (useful for rgba() usage)
$vivid-lime-green-r: 166;
$vivid-lime-green-g: 214;
$vivid-lime-green-b: 8;
// Usage
.element {
background-color: $vivid-lime-green;
color: rgba($vivid-lime-green-r, $vivid-lime-green-g, $vivid-lime-green-b, 0.8);
}