Neon Green
HEX: #39FF14 | Modern Palette
Color Specifications
#39FF14
57, 255, 20
110°, 92% ,100%
77.65, 0, 92.16, 0
About Neon Green
Neon Green (#39FF14) is a color with RGB(57, 255, 20) and HSL(110.55°, 92.16%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #DA14FF, which creates strong contrast. Its triadic palette includes #1439FF and #FF1439. The name comes from Neon Green (English).
- HEX: #39FF14
- RGB: 57, 255, 20
- HSL: 110.55°, 92.16%, 100%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #DA14FF
- Triadic colors: #1439FF, #FF1439
- The name comes from Neon Green (English).
Live Components
Color Palettes
Neon Green #39FF14 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
Neon Green #39FF14 pairs with #DA14FF as its complementary color, and #1439FF and #FF1439 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 'neon' itself comes from the Greek word 'neos' meaning 'new'. Neon lights, which use noble gases to produce a bright glow, became popular in the early 20th century. As synthetic dyes and pigments advanced, particularly in the mid-20th century, colors that mimicked the intense, glowing quality of neon lights began to emerge. 'Neon Green' specifically gained prominence in the 1960s and 1980s, often associated with counter-culture, rave culture, and futuristic aesthetics. Its hexadecimal code #39ff14 is a modern digital representation of this vibrant hue.
First Recorded Use
1960s
Cultural Associations
Often associated with rave culture, electronic music, and 1980s/90s fashion. Used to signify high visibility, often in safety equipment or athletic wear. Can evoke feelings of energy, excitement, artificiality, and the future. Popular in cyberpunk aesthetics and science fiction for its 'otherworldly' glow.
Code Snippets
/* Background */
.element {
background-color: #39FF14;
}
/* Text */
.element {
color: #39FF14;
}
/* Border */
.element {
border: 1px solid #39FF14;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#39FF14,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#39FF14,
#FFFFFF
);
}
// SCSS variable
$neon-green: #39FF14;
// With RGB channels (useful for rgba() usage)
$neon-green-r: 57;
$neon-green-g: 255;
$neon-green-b: 20;
// Usage
.element {
background-color: $neon-green;
color: rgba($neon-green-r, $neon-green-g, $neon-green-b, 0.8);
}