Pale Magenta

HEX: #F984E5 | Modern Palette

On White
2.22:1
FAIL
On Black
9.46:1
PASS

Color Specifications

HEX
#F984E5
RGB
249, 132, 229
HSL
310°, 90% ,74%
CMYK
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

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

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #B1B1E3
Protanopia #9797E5
Tritanopia #F09595
Achromatopsia #AEAEAE

Frequently Asked Questions

Pale Magenta (#F984E5) is a color with RGB(249, 132, 229) and HSL(310.3°, 90.7%, 74.7%).

#F984E5 pairs strongly with #84F998 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F984E5 is suitable for Text, Button, Accent and works well with Neon, Warm styles.

#F984E5 is commonly associated with Bold, Playful.

The name Pale Magenta is linked to Pale Magenta from English, meaning A light, desaturated shade of magenta..

Name, History & Etymology

Origin Word Pale Magenta
Meaning A light, desaturated shade of magenta.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Light Fuchsia Pink #F984EF ΔE 1.83
Violet #EE82EE ΔE 3.21
Fuchsia Pink #FF77FF ΔE 5.07
Pink Flamingo #FC74FD ΔE 5.30

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);
}