Raspberry
HEX: #E30B5D | Modern Palette
Color Specifications
#E30B5D
227, 11, 93
337°, 90% ,46%
0, 95, 59, 11
About Raspberry
Raspberry (#E30B5D) is a color with RGB(227, 11, 93) and HSL(337.2°, 90.8%, 46.7%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0BE391, which creates strong contrast. Its triadic palette includes #5DE30B and #0B5DE3. The name comes from Raspberry (English).
- HEX: #E30B5D
- RGB: 227, 11, 93
- HSL: 337.2°, 90.8%, 46.7%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0BE391
- Triadic colors: #5DE30B, #0B5DE3
- The name comes from Raspberry (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 #E30B5D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'raspberry' is believed to be a modification of an earlier word 'raspise' (from the mid-15th century), which referred to a sweet rose-colored wine or cordial, and later to the fruit itself. The 'rasp-' element is thought to come from an Old French word 'raspe' meaning 'grape bunch' or 'honeycomb', possibly referring to the fruit's clustered drupelets. Another theory suggests it comes from an Old English word 'rasp' meaning 'rough' or 'coarse', perhaps describing the texture of the fruit or its bush. The '-berry' suffix was added later to clearly identify it as a type of fruit. The color 'raspberry' (#e30b5d) is a deep reddish-pink, named directly after the fruit.
First Recorded Use
c. 1590s
Cultural Associations
Raspberries are widely cultivated and consumed globally, known for their sweet and tart flavor. In some cultures, raspberries symbolize kindness, warmth, and comfort. The phrase 'blowing a raspberry' (or 'razz') refers to making a rude sound with the tongue and lips, mimicking flatulence. This usage is distinct from the fruit and its color. Raspberry ketones have been marketed as a weight-loss supplement, though scientific evidence for their efficacy is limited. The color raspberry is often associated with femininity, romance, and vibrancy in fashion and design.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #E30B5D;
}
/* Text */
.element {
color: #E30B5D;
}
/* Border */
.element {
border: 1px solid #E30B5D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E30B5D,
#0BE391
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E30B5D,
#0BE391
);
}
// SCSS variable
$raspberry: #E30B5D;
// With RGB channels (useful for rgba() usage)
$raspberry-r: 227;
$raspberry-g: 11;
$raspberry-b: 93;
// Usage
.element {
background-color: $raspberry;
color: rgba($raspberry-r, $raspberry-g, $raspberry-b, 0.8);
}