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
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 #E25098 from deepest shade to lightest tint.
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);
}