Raspberry Rose

HEX: #B3446C | Modern Palette

On White
5.30:1
PASS
On Black
3.96:1
FAIL

Color Specifications

HEX
#B3446C
RGB
179, 68, 108
HSL
338°, 44% ,48%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #737369
Protanopia #59596D
Tritanopia #B14B4B
Achromatopsia #6B6B6B

Frequently Asked Questions

Raspberry Rose (#B3446C) is a color with RGB(179, 68, 108) and HSL(338.4°, 44.9%, 48.4%).

#B3446C pairs strongly with #44B38B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#B3446C is suitable for Text, Logo, Print and works well with Warm styles.

#B3446C is commonly associated with Romantic.

The name Raspberry Rose is linked to Raspberry Rose from English, meaning A color that evokes the hue of raspberries and roses, often a vibrant pink-red..

Name, History & Etymology

Origin Word Raspberry Rose
Meaning A color that evokes the hue of raspberries and roses, often a vibrant pink-red.
Language English
First Recorded Use Late 20th Century - Early 21st Century

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.

Similar Named Colors

Medium Ruby #AA4069 ΔE 2.31
China Rose #A8516E ΔE 3.38
Fuchsia Rose #C74375 ΔE 4.06
Rich Maroon #B03060 ΔE 4.07

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