Pastel Magenta

HEX: #F49AC2 | Modern Palette

On White
2.05:1
FAIL
On Black
10.25:1
PASS

Color Specifications

HEX
#F49AC2
RGB
244, 154, 194
HSL
333°, 80% ,78%
CMYK
0, 37, 20, 4

About Pastel Magenta

Pastel Magenta (#F49AC2) is a color with RGB(244, 154, 194) and HSL(333.3°, 80.4%, 78%). It is commonly associated with Bold, Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #9AF4CC, which creates strong contrast. Its triadic palette includes #C2F49A and #9AC2F4.

  • HEX: #F49AC2
  • RGB: 244, 154, 194
  • HSL: 333.3°, 80.4%, 78%
  • Mood: Bold, Playful
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #9AF4CC
  • Triadic colors: #C2F49A, #9AC2F4

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

Color Characteristics

Mood
Bold Playful
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #BABAC0
Protanopia #A7A7C2
Tritanopia #F1A0A0
Achromatopsia #B5B5B5

Frequently Asked Questions

Pastel Magenta (#F49AC2) is a color with RGB(244, 154, 194) and HSL(333.3°, 80.4%, 78%).

#F49AC2 pairs strongly with #9AF4CC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#F49AC2 is commonly associated with Bold, Playful.

Similar Named Colors

Amaranth Pink #F19CBB ΔE 2.23
Pale Magenta-pink #FF99CC ΔE 2.62
Kobi #E79FC4 ΔE 2.96
Carnation Pink #FFA6C9 ΔE 3.19

Code Snippets

/* Background */
.element {
    background-color: #F49AC2;
}

/* Text */
.element {
    color: #F49AC2;
}

/* Border */
.element {
    border: 1px solid #F49AC2;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #F49AC2,
        #9AF4CC
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F49AC2,
        #9AF4CC
    );
}

// SCSS variable
$pastel-magenta: #F49AC2;

// With RGB channels (useful for rgba() usage)
$pastel-magenta-r: 244;
$pastel-magenta-g: 154;
$pastel-magenta-b: 194;

// Usage
.element {
    background-color: $pastel-magenta;
    color: rgba($pastel-magenta-r, $pastel-magenta-g, $pastel-magenta-b, 0.8);
}