Neon Fuchsia
HEX: #FE4164 | Modern Palette
Color Specifications
#FE4164
254, 65, 100
348°, 74% ,99%
0, 74.41, 60.63, 0.39
About Neon Fuchsia
Neon Fuchsia (#FE4164) is a color with RGB(254, 65, 100) and HSL(348.89°, 74.41%, 99.61%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #41FEDB, which creates strong contrast. Its triadic palette includes #64FE41 and #4164FE. The name comes from Neon Fuchsia (English).
- HEX: #FE4164
- RGB: 254, 65, 100
- HSL: 348.89°, 74.41%, 99.61%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #41FEDB
- Triadic colors: #64FE41, #4164FE
- 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 #FE4164 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#9A9A5C
#6E6E66
#FD4747
#8B8B8B
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 popular in the late 20th century to describe extremely bright, often fluorescent or synthetic-looking versions of existing colors. 'Neon Fuchsia' specifically captures a very vibrant, almost glowing magenta-pink hue.
First Recorded Use
While 'fuchsia' as a color name dates back to the mid-19th century, the specific compound 'neon fuchsia' likely gained prominence in the 1980s and 1990s with the rise of neon colors in fashion and design.
Cultural Associations
Neon fuchsia is strongly associated with 1980s and early 1990s aesthetics, including fashion, sportswear, graphic design, and pop culture. It evokes a sense of energy, boldness, and artificiality. It has seen resurgences in popularity in various fashion and design trends since then, often as a retro nod or a statement color.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #FE4164;
}
/* Text */
.element {
color: #FE4164;
}
/* Border */
.element {
border: 1px solid #FE4164;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FE4164,
#FDFFFE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FE4164,
#FDFFFE
);
}
// SCSS variable
$neon-fuchsia: #FE4164;
// With RGB channels (useful for rgba() usage)
$neon-fuchsia-r: 254;
$neon-fuchsia-g: 65;
$neon-fuchsia-b: 100;
// Usage
.element {
background-color: $neon-fuchsia;
color: rgba($neon-fuchsia-r, $neon-fuchsia-g, $neon-fuchsia-b, 0.8);
}