Pastel Purple

HEX: #B39EB5 | Modern Palette

On White
2.48:1
FAIL
On Black
8.47:1
PASS

Color Specifications

HEX
#B39EB5
RGB
179, 158, 181
HSL
294°, 13% ,66%
CMYK
1, 13, 0, 29

About Pastel Purple

Pastel Purple (#B39EB5) is a color with RGB(179, 158, 181) and HSL(294.8°, 13.5%, 66.5%). In design, it fits Muted styles and is suitable for Text, Background, Border. Its complementary color is #A0B59E, which creates strong contrast. Its triadic palette includes #B5B39E and #9EB5B3.

  • HEX: #B39EB5
  • RGB: 179, 158, 181
  • HSL: 294.8°, 13.5%, 66.5%
  • Style: Muted
  • Use case: Text, Background, Border
  • Complementary color: #A0B59E
  • Triadic colors: #B5B39E, #9EB5B3

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

Color Characteristics

Mood
Style
Muted

Accessibility Simulation

Deuteranopia #A4A4B5
Protanopia #A0A0B5
Tritanopia #B0A1A1
Achromatopsia #A4A4A4

Frequently Asked Questions

Pastel Purple (#B39EB5) is a color with RGB(179, 158, 181) and HSL(294.8°, 13.5%, 66.5%).

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

#B39EB5 is suitable for Text, Background, Border and works well with Muted styles.

Similar Named Colors

Rose Quartz #AA98A9 ΔE 3.19
Lilac #C8A2C8 ΔE 6.53
Pink Lavender #D8B2D1 ΔE 8.46
Pastel Violet #CB99C9 ΔE 9.02

Code Snippets

/* Background */
.element {
    background-color: #B39EB5;
}

/* Text */
.element {
    color: #B39EB5;
}

/* Border */
.element {
    border: 1px solid #B39EB5;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #B39EB5,
        #A0B59E
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #B39EB5,
        #A0B59E
    );
}

// SCSS variable
$pastel-purple: #B39EB5;

// With RGB channels (useful for rgba() usage)
$pastel-purple-r: 179;
$pastel-purple-g: 158;
$pastel-purple-b: 181;

// Usage
.element {
    background-color: $pastel-purple;
    color: rgba($pastel-purple-r, $pastel-purple-g, $pastel-purple-b, 0.8);
}