Neon Fuchsia

HEX: #FE4164 | Modern Palette

On White
3.41:1
FAIL
On Black
6.15:1
PASS

Color Specifications

HEX
#FE4164
RGB
254, 65, 100
HSL
348°, 74% ,99%
CMYK
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

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 #FE4164 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #9A9A5C
Protanopia #6E6E66
Tritanopia #FD4747
Achromatopsia #8B8B8B

Frequently Asked Questions

Neon Fuchsia (#FE4164) is a color with RGB(254, 65, 100) and HSL(348.89°, 74.41%, 99.61%).

#FE4164 pairs strongly with #41FEDB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FE4164 is suitable for Text, Button, Background and works well with Warm styles.

#FE4164 is commonly associated with Playful.

The name Neon Fuchsia is linked to Neon Fuchsia from English, meaning A vivid, intense pinkish-purple color, reminiscent of the fuchsia flower, with the added brightness and artificiality implied by 'neon'..

Name, History & Etymology

Origin Word Neon Fuchsia
Meaning A vivid, intense pinkish-purple color, reminiscent of the fuchsia flower, with the added brightness and artificiality implied by 'neon'.
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 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

Radical Red #FF355E ΔE 1.39
Awesome #FF2052 ΔE 3.80
Folly #FF004F ΔE 4.78
Desire #EA3C53 ΔE 4.96

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