Raspberry

HEX: #E30B5D | Modern Palette

On White
4.70:1
PASS
On Black
4.47:1
FAIL

Color Specifications

HEX
#E30B5D
RGB
227, 11, 93
HSL
337°, 90% ,46%
CMYK
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

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 #E30B5D from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #838356
Protanopia #53535E
Tritanopia #E12323
Achromatopsia #747474

Frequently Asked Questions

Raspberry (#E30B5D) is a color with RGB(227, 11, 93) and HSL(337.2°, 90.8%, 46.7%).

#E30B5D pairs strongly with #0BE391 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#E30B5D is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#E30B5D is commonly associated with Energetic, Bold.

The name Raspberry is linked to Raspberry from English, meaning A red or black edible fruit related to the blackberry; the bramble or bush on which it grows..

Name, History & Etymology

Origin Word Raspberry
Meaning A red or black edible fruit related to the blackberry; the bramble or bush on which it grows.
Language English
First Recorded Use Late 16th Century

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

Ruby #E0115F ΔE 0.84
Cerise #DE3163 ΔE 2.39
Debian Red #D70A53 ΔE 2.99
Razzmatazz #E3256B ΔE 3.12

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