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