Raspberry Pink
HEX: #E25098 | Modern Palette
Color Specifications
#E25098
226, 80, 152
330°, 71% ,60%
0, 65, 33, 11
About Raspberry Pink
Raspberry Pink (#E25098) is a color with RGB(226, 80, 152) and HSL(330.4°, 71.6%, 60%). It is commonly associated with Energetic, Playful moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #50E29A, which creates strong contrast. Its triadic palette includes #98E250 and #5098E2. The name comes from Raspberry Pink (English).
- HEX: #E25098
- RGB: 226, 80, 152
- HSL: 330.4°, 71.6%, 60%
- Mood: Energetic, Playful
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #50E29A
- Triadic colors: #98E250, #5098E2
- The name comes from Raspberry Pink (English).
Live Components
Color Palettes
Raspberry Pink #E25098 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
Raspberry Pink #E25098 pairs with #50E29A as its complementary color, and #98E250 and #5098E2 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color 'raspberry' itself has been used to describe a reddish-purple or deep red color for centuries, drawing its name directly from the fruit. As color palettes expanded and the need for more precise distinctions grew, 'Raspberry Pink' emerged to specify a lighter, more pinkish hue of the fruit's color, rather than the darker, more red or purplish tones. It gained popularity in various industries for its vibrant yet soft appeal. The hex code #e25098 is a modern digital representation of this color.
First Recorded Use
The specific compound term 'Raspberry Pink' likely emerged as color naming became more descriptive and nuanced, particularly in fashion, textiles, and cosmetics. While 'raspberry' as a color descriptor (often for reds) existed earlier, the 'pink' variant became more common in the late 19th or early 20th century to distinguish it from deeper raspberry reds.
Cultural Associations
Raspberry Pink is often associated with femininity, sweetness, and vibrancy. It can evoke feelings of playfulness, romance, and energy. It's a popular color in spring and summer fashion, children's wear, and confectionery. In some contexts, it might be seen as a more sophisticated or 'grown-up' pink compared to lighter, pastel pinks, due to its richer saturation.
Code Snippets
/* Background */
.element {
background-color: #E25098;
}
/* Text */
.element {
color: #E25098;
}
/* Border */
.element {
border: 1px solid #E25098;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E25098,
#50E29A
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E25098,
#50E29A
);
}
// SCSS variable
$raspberry-pink: #E25098;
// With RGB channels (useful for rgba() usage)
$raspberry-pink-r: 226;
$raspberry-pink-g: 80;
$raspberry-pink-b: 152;
// Usage
.element {
background-color: $raspberry-pink;
color: rgba($raspberry-pink-r, $raspberry-pink-g, $raspberry-pink-b, 0.8);
}