Pastel Magenta
HEX: #F49AC2 | Modern Palette
Color Specifications
#F49AC2
244, 154, 194
333°, 80% ,78%
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
Color Palettes
Pastel Magenta #F49AC2 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
Pastel Magenta #F49AC2 pairs with #9AF4CC as its complementary color, and #C2F49A and #9AC2F4 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
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);
}