Fuchsia Pink
HEX: #FF77FF | Modern Palette
Color Specifications
#FF77FF
255, 119, 255
300°, 100% ,73%
0, 53, 0, 0
About Fuchsia Pink
Fuchsia Pink (#FF77FF) is a color with RGB(255, 119, 255) and HSL(300°, 100%, 73.3%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #77FF77, which creates strong contrast. Its triadic palette includes #FFFF77 and #77FFFF. The name comes from Fuchsia (English).
- HEX: #FF77FF
- RGB: 255, 119, 255
- HSL: 300°, 100%, 73.3%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #77FF77
- Triadic colors: #FFFF77, #77FFFF
- The name comes from Fuchsia (English).
Live Components
Color Palettes
Fuchsia Pink #FF77FF is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Fuchsia Pink #FF77FF pairs with #77FF77 as its complementary color, and #FFFF77 and #77FFFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The fuchsia flower was discovered in the Caribbean by Charles Plumier in the late 17th century and named after Leonhart Fuchs. It was introduced to Europe in the late 18th and early 19th centuries, becoming very popular. The vibrant magenta-pink color of many fuchsia varieties led to the adoption of 'fuchsia' as a color name. 'Fuchsia Pink' specifically emphasizes the pinker end of the fuchsia spectrum, distinguishing it from more purplish fuchsia shades. The dye industry, particularly with the advent of synthetic aniline dyes in the mid-19th century, helped standardize and popularize such vivid colors.
First Recorded Use
The color 'fuchsia' as a named color is generally cited as appearing in English around the 1850s, following the introduction and popularization of the fuchsia flower itself in Europe.
Cultural Associations
Fuchsia pink is often associated with vibrancy, femininity, playfulness, and boldness. It has been popular in fashion, particularly in the mid-20th century and again in recent decades, often used to make a statement. It can evoke feelings of energy and excitement. In some contexts, it's seen as a more sophisticated or mature pink compared to lighter, pastel pinks.
Code Snippets
/* Background */
.element {
background-color: #FF77FF;
}
/* Text */
.element {
color: #FF77FF;
}
/* Border */
.element {
border: 1px solid #FF77FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF77FF,
#77FF77
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF77FF,
#77FF77
);
}
// SCSS variable
$fuchsia-pink: #FF77FF;
// With RGB channels (useful for rgba() usage)
$fuchsia-pink-r: 255;
$fuchsia-pink-g: 119;
$fuchsia-pink-b: 255;
// Usage
.element {
background-color: $fuchsia-pink;
color: rgba($fuchsia-pink-r, $fuchsia-pink-g, $fuchsia-pink-b, 0.8);
}