Neon Fuchsia
HEX: #FE59C2 | Modern Palette
Color Specifications
#FE59C2
254, 89, 194
321°, 98% ,67%
0, 65, 24, 0
About Neon Fuchsia
Neon Fuchsia (#FE59C2) is a color with RGB(254, 89, 194) and HSL(321.8°, 98.8%, 67.3%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #59FE95, which creates strong contrast. Its triadic palette includes #C2FE59 and #59C2FE. The name comes from Neon Fuchsia (English).
- HEX: #FE59C2
- RGB: 254, 89, 194
- HSL: 321.8°, 98.8%, 67.3%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #59FE95
- Triadic colors: #C2FE59, #59C2FE
- The name comes from Neon Fuchsia (English).
Live Components
Color Palettes
Neon Fuchsia #FE59C2 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 Fuchsia #FE59C2 pairs with #59FE95 as its complementary color, and #C2FE59 and #59C2FE 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 color 'fuchsia' was named after the fuchsia flower, which in turn was named after the German botanist Leonhart Fuchs. The addition of 'neon' to color names became prevalent during the 1980s, a decade characterized by bright, artificial, and often glowing colors in popular culture. 'Neon Fuchsia' specifically describes a highly saturated and vibrant version of fuchsia, often achieved with synthetic dyes or pigments that give it an almost glowing quality.
First Recorded Use
While 'fuchsia' as a color name dates back to the mid-19th century, the specific compound 'Neon Fuchsia' likely emerged in the late 20th century (1980s-1990s) with the popularization of neon colors in fashion, art, and design.
Cultural Associations
Neon Fuchsia is strongly associated with 1980s and early 1990s aesthetics, including synth-pop music, arcade games, aerobics wear, and rave culture. It evokes a sense of energy, artificiality, and playful rebellion. It has seen resurgences in fashion and design, particularly in retro-themed collections or when designers aim for a bold, eye-catching statement. It's often used in conjunction with other neon colors like electric blue, lime green, and bright yellow.
Code Snippets
/* Background */
.element {
background-color: #FE59C2;
}
/* Text */
.element {
color: #FE59C2;
}
/* Border */
.element {
border: 1px solid #FE59C2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FE59C2,
#59FE95
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FE59C2,
#59FE95
);
}
// SCSS variable
$neon-fuchsia: #FE59C2;
// With RGB channels (useful for rgba() usage)
$neon-fuchsia-r: 254;
$neon-fuchsia-g: 89;
$neon-fuchsia-b: 194;
// Usage
.element {
background-color: $neon-fuchsia;
color: rgba($neon-fuchsia-r, $neon-fuchsia-g, $neon-fuchsia-b, 0.8);
}