Fashion Fuchsia
HEX: #F400A1 | Modern Palette
Color Specifications
#F400A1
244, 0, 161
320°, 100% ,47%
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
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 #F400A1 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}