Fashion Fuchsia

HEX: #F400A1 | Modern Palette

On White
3.92:1
FAIL
On Black
5.36:1
PASS

Color Specifications

HEX
#F400A1
RGB
244, 0, 161
HSL
320°, 100% ,47%
CMYK
0, 100, 34, 4

About Fashion Fuchsia

Fashion Fuchsia (#F400A1) is a color with RGB(244, 0, 161) and HSL(320.4°, 100%, 47.8%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00F453, which creates strong contrast. Its triadic palette includes #A1F400 and #00A1F4. The name comes from Fuchsia (genus name) (Latin (via German botanist)).

  • HEX: #F400A1
  • RGB: 244, 0, 161
  • HSL: 320.4°, 100%, 47.8%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #00F453
  • Triadic colors: #A1F400, #00A1F4
  • The name comes from Fuchsia (genus name) (Latin (via German botanist)).

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

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #8C8C9D
Protanopia #5858A2
Tritanopia #EE3C3C
Achromatopsia #818181

Frequently Asked Questions

Fashion Fuchsia (#F400A1) is a color with RGB(244, 0, 161) and HSL(320.4°, 100%, 47.8%).

#F400A1 pairs strongly with #00F453 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F400A1 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#F400A1 is commonly associated with Energetic, Bold.

The name Fashion Fuchsia is linked to Fuchsia (genus name) from Latin (via German botanist), meaning Named after Leonhart Fuchs, a prominent German physician and botanist (16th century).

Name, History & Etymology

Origin Word Fuchsia (genus name)
Meaning Named after Leonhart Fuchs, a prominent German physician and botanist (16th century)
Language Latin (via German botanist)
First Recorded Use 18th Century (for the plant), 19th Century (for the color)

History

The color 'fuchsia' is a vivid purplish-red or pink, taking its name directly from the color of the flowers of the fuchsia plant. The plant itself was discovered in the Caribbean by Charles Plumier and named after Leonhart Fuchs. The color became particularly fashionable in the mid-19th century, especially after the invention of aniline dyes like fuchsine (also known as magenta) in 1859. Fuchsine dye produced a color very similar to the fuchsia flower, solidifying the color's name and popularity. 'Fashion Fuchsia' specifically implies a contemporary, trendy, and vibrant take on this classic color, often used in clothing, accessories, and cosmetics to make a bold statement.

First Recorded Use

The plant genus 'Fuchsia' was named by Charles Plumier around 1703. The color 'fuchsia' as a specific hue name emerged later, likely in the mid-19th century, following the widespread cultivation and popularity of fuchsia flowers, particularly after magenta dye was discovered.

Cultural Associations

Fuchsia is often associated with vibrancy, energy, playfulness, and femininity. It has been a popular color in fashion and design for decades, frequently appearing in spring/summer collections. Its boldness can signify confidence and creativity. In some contexts, it can also be seen as exotic or tropical due to the plant's origins. The 'fashion' prefix emphasizes its current relevance and stylish application.

Similar Named Colors

Persian Rose #FE28A2 ΔE 3.64
Deep Pink #FF1493 ΔE 4.58
Magenta (process) #FF0090 ΔE 4.69
Barbie Pink #E0218A ΔE 4.76

Code Snippets

/* Background */
.element {
    background-color: #F400A1;
}

/* Text */
.element {
    color: #F400A1;
}

/* Border */
.element {
    border: 1px solid #F400A1;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #F400A1,
        #00F453
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F400A1,
        #00F453
    );
}

// SCSS variable
$fashion-fuchsia: #F400A1;

// With RGB channels (useful for rgba() usage)
$fashion-fuchsia-r: 244;
$fashion-fuchsia-g: 0;
$fashion-fuchsia-b: 161;

// Usage
.element {
    background-color: $fashion-fuchsia;
    color: rgba($fashion-fuchsia-r, $fashion-fuchsia-g, $fashion-fuchsia-b, 0.8);
}