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