Light Fuchsia Pink
HEX: #F984EF | Modern Palette
Color Specifications
#F984EF
249, 132, 239
305°, 90% ,74%
0, 47, 4, 2
About Light Fuchsia Pink
Light Fuchsia Pink (#F984EF) is a color with RGB(249, 132, 239) and HSL(305.1°, 90.7%, 74.7%). 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 #84F98E, which creates strong contrast. Its triadic palette includes #EFF984 and #84EFF9. The name comes from Light Fuchsia Pink (English).
- HEX: #F984EF
- RGB: 249, 132, 239
- HSL: 305.1°, 90.7%, 74.7%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #84F98E
- Triadic colors: #EFF984, #84EFF9
- The name comes from Light Fuchsia Pink (English).
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 #F984EF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color fuchsia itself is named after the fuchsia flower, which was named after German botanist Leonhart Fuchs in the 16th century. The color name 'fuchsia' entered English around 1859. As color naming became more granular, especially with the rise of commercial dyes, paints, and later digital color palettes, descriptive terms like 'light' and 'pink' were added to specify variations. 'Fuchsia Pink' often refers to a slightly redder or more vibrant pink than a pure magenta fuchsia. 'Light Fuchsia Pink' then denotes a desaturated or lighter version of that specific fuchsia-pink hue.
First Recorded Use
While 'fuchsia' as a color name dates back to the mid-19th century, specific modifiers like 'light' combined with 'fuchsia pink' to describe a precise shade like #f984ef became more common with the advent of digital color systems and web design in the late 20th century (1990s onwards).
Cultural Associations
Fuchsia, in general, is often associated with vibrancy, playfulness, and femininity. It can be seen in fashion, cosmetics, and interior design. Lighter shades like 'Light Fuchsia Pink' might evoke feelings of softness, romance, or youthful energy, while still retaining some of the exotic flair of the fuchsia flower. It's a popular color for spring and summer collections.
Code Snippets
/* Background */
.element {
background-color: #F984EF;
}
/* Text */
.element {
color: #F984EF;
}
/* Border */
.element {
border: 1px solid #F984EF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F984EF,
#84F98E
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F984EF,
#84F98E
);
}
// SCSS variable
$light-fuchsia-pink: #F984EF;
// With RGB channels (useful for rgba() usage)
$light-fuchsia-pink-r: 249;
$light-fuchsia-pink-g: 132;
$light-fuchsia-pink-b: 239;
// Usage
.element {
background-color: $light-fuchsia-pink;
color: rgba($light-fuchsia-pink-r, $light-fuchsia-pink-g, $light-fuchsia-pink-b, 0.8);
}