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
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 #39FF14 from deepest shade to lightest tint.
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);
}