Light Pastel Purple

HEX: #B19CD9 | Modern Palette

On White
2.43:1
FAIL
On Black
8.63:1
PASS

Color Specifications

HEX
#B19CD9
RGB
177, 156, 217
HSL
260°, 44% ,73%
CMYK
18, 28, 0, 15

About Light Pastel Purple

Light Pastel Purple (#B19CD9) is a color with RGB(177, 156, 217) and HSL(260.7°, 44.5%, 73.1%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Logo, Print. Its complementary color is #C4D99C, which creates strong contrast. Its triadic palette includes #D9B19C and #9CD9B1.

  • HEX: #B19CD9
  • RGB: 177, 156, 217
  • HSL: 260.7°, 44.5%, 73.1%
  • Mood: Romantic
  • Use case: Text, Logo, Print
  • Complementary color: #C4D99C
  • Triadic colors: #D9B19C, #9CD9B1

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

Color Characteristics

Mood
Romantic
Style
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #A2A2D9
Protanopia #9E9ED9
Tritanopia #A8A5A5
Achromatopsia #A6A6A6

Frequently Asked Questions

Light Pastel Purple (#B19CD9) is a color with RGB(177, 156, 217) and HSL(260.7°, 44.5%, 73.1%).

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

#B19CD9 is suitable for Text, Logo, Print.

#B19CD9 is commonly associated with Romantic.

Name, History & Etymology

History

The term 'pastel' to describe a light, soft shade of a color became common in the early 20th century, particularly with the rise of pastel art mediums and fashion trends favoring softer palettes. 'Purple' itself has a long history, derived from the ancient Murex snail dye. The combination 'Light Pastel Purple' is a modern descriptive term, not a historically named color like 'Tyrian Purple' or 'Mauve'. It emerged as a way to precisely describe a specific hue within the broader purple spectrum, especially with the advent of standardized color systems and digital color representation.

First Recorded Use

Early to Mid 20th Century (as a descriptive color name)

Cultural Associations

Pastel colors, including light pastel purple, are often associated with spring, Easter, femininity, youth, and softness. In fashion and interior design, they evoke a sense of calm, elegance, and playfulness. Purple, in general, has historical associations with royalty, luxury, and spirituality. A light pastel purple can carry some of these connotations but in a more subdued and gentle manner. It's frequently seen in children's products, wedding decor, and certain artistic movements.

Similar Named Colors

Lenurple #BA93D8 ΔE 4.10
Bright Lavender #BF94E4 ΔE 5.00
Wisteria #C9A0DC ΔE 5.55
Blue Bell #A2A2D0 ΔE 5.71

Code Snippets

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

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

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

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

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

// SCSS variable
$light-pastel-purple: #B19CD9;

// With RGB channels (useful for rgba() usage)
$light-pastel-purple-r: 177;
$light-pastel-purple-g: 156;
$light-pastel-purple-b: 217;

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