Raspberry Rose
HEX: #B3446C | Modern Palette
Color Specifications
#B3446C
179, 68, 108
338°, 44% ,48%
0, 62, 40, 30
About Raspberry Rose
Raspberry Rose (#B3446C) is a color with RGB(179, 68, 108) and HSL(338.4°, 44.9%, 48.4%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #44B38B, which creates strong contrast. Its triadic palette includes #6CB344 and #446CB3. The name comes from Raspberry Rose (English).
- HEX: #B3446C
- RGB: 179, 68, 108
- HSL: 338.4°, 44.9%, 48.4%
- Mood: Romantic
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #44B38B
- Triadic colors: #6CB344, #446CB3
- The name comes from Raspberry Rose (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 #B3446C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The individual components 'raspberry' and 'rose' have rich histories as color descriptors. 'Rose' as a color name dates back to at least the late 17th century, referring to various shades of pink. 'Raspberry' as a color descriptor, referring to a reddish-pink or purplish-red, became more common in the 19th and 20th centuries. The combination 'Raspberry Rose' specifically aims to capture a particular nuance, often a bright, slightly muted, yet rich pink-red, balancing the fruitiness of raspberry with the floral elegance of a rose. Its rise is tied to marketing and branding in industries where precise and appealing color names are crucial.
First Recorded Use
The specific compound 'Raspberry Rose' as a color name likely emerged with the proliferation of commercial color palettes (paint, cosmetics, fashion) seeking evocative and descriptive names. While 'raspberry' and 'rose' have long been used for colors individually, their combination for a specific shade is more recent.
Cultural Associations
This color name evokes feelings of sweetness, romance, and natural beauty. 'Raspberry' suggests a playful, juicy, and perhaps slightly tart quality, while 'rose' brings to mind classic beauty, love, and sophistication. The combination creates a versatile shade often associated with feminine products, spring/summer fashion, confectionery, and romantic themes. It's a popular choice for cosmetics (lipsticks, blushes), apparel, and home decor where a cheerful yet elegant pink-red is desired.
Code Snippets
/* Background */
.element {
background-color: #B3446C;
}
/* Text */
.element {
color: #B3446C;
}
/* Border */
.element {
border: 1px solid #B3446C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B3446C,
#44B38B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B3446C,
#44B38B
);
}
// SCSS variable
$raspberry-rose: #B3446C;
// With RGB channels (useful for rgba() usage)
$raspberry-rose-r: 179;
$raspberry-rose-g: 68;
$raspberry-rose-b: 108;
// Usage
.element {
background-color: $raspberry-rose;
color: rgba($raspberry-rose-r, $raspberry-rose-g, $raspberry-rose-b, 0.8);
}