Neon Fuchsia

HEX: #FE59C2 | Modern Palette

On White
2.83:1
FAIL
On Black
7.42:1
PASS

Color Specifications

HEX
#FE59C2
RGB
254, 89, 194
HSL
321°, 98% ,67%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A1A1BF
Protanopia #7B7BC3
Tritanopia #F76E6E
Achromatopsia #9A9A9A

Frequently Asked Questions

Neon Fuchsia (#FE59C2) is a color with RGB(254, 89, 194) and HSL(321.8°, 98.8%, 67.3%).

#FE59C2 pairs strongly with #59FE95 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FE59C2 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FE59C2 is commonly associated with Energetic, Bold.

The name Neon Fuchsia is linked to Neon Fuchsia from English, meaning A vivid, bright pinkish-purple color, reminiscent of the fuchsia flower, with an intensity often associated with neon lights..

Name, History & Etymology

Origin Word Neon Fuchsia
Meaning A vivid, bright pinkish-purple color, reminiscent of the fuchsia flower, with an intensity often associated with neon lights.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Light Deep Pink #FF5CCD ΔE 1.88
Rose Pink #FF66CC ΔE 2.39
Hot Pink #FF69B4 ΔE 4.64
Purple Pizzazz #FE4EDA ΔE 4.71

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);
}