Pale Magenta
HEX: #F984E5 | Modern Palette
Color Specifications
#F984E5
249, 132, 229
310°, 90% ,74%
0, 47, 8, 2
About Pale Magenta
Pale Magenta (#F984E5) is a color with RGB(249, 132, 229) and HSL(310.3°, 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 #84F998, which creates strong contrast. Its triadic palette includes #E5F984 and #84E5F9. The name comes from Pale Magenta (English).
- HEX: #F984E5
- RGB: 249, 132, 229
- HSL: 310.3°, 90.7%, 74.7%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #84F998
- Triadic colors: #E5F984, #84E5F9
- The name comes from Pale Magenta (English).
Live Components
Color Palettes
Pale Magenta #F984E5 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
Pale Magenta #F984E5 pairs with #84F998 as its complementary color, and #E5F984 and #84E5F9 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Magenta itself is a tertiary color, a mix of red and blue-violet. It is one of the primary colors in subtractive color models (CMYK), used in printing. The term 'pale' simply indicates a lighter tint of the base color. The specific hex code #f984e5 represents a particular point within the spectrum of 'pale magenta' and would have been defined with the rise of digital color specification.
First Recorded Use
While 'magenta' as a color name dates back to the mid-19th century (after the Battle of Magenta in 1859 and the subsequent dye discovery), the specific compound term 'pale magenta' would have become more common with the advent of standardized color systems, digital color representation, and widespread use of color naming conventions in art, design, and computing, likely solidifying in the late 20th century.
Cultural Associations
Magenta is often associated with femininity, creativity, and unconventionality. As a 'pale' shade, it might evoke feelings of softness, delicacy, or a dreamlike quality. It's less aggressive than a vibrant magenta and can be seen as more sophisticated or calming. It's a popular color in fashion, interior design, and digital aesthetics, particularly in contexts aiming for a modern, chic, or whimsical feel.
Code Snippets
/* Background */
.element {
background-color: #F984E5;
}
/* Text */
.element {
color: #F984E5;
}
/* Border */
.element {
border: 1px solid #F984E5;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F984E5,
#84F998
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F984E5,
#84F998
);
}
// SCSS variable
$pale-magenta: #F984E5;
// With RGB channels (useful for rgba() usage)
$pale-magenta-r: 249;
$pale-magenta-g: 132;
$pale-magenta-b: 229;
// Usage
.element {
background-color: $pale-magenta;
color: rgba($pale-magenta-r, $pale-magenta-g, $pale-magenta-b, 0.8);
}