Light Pastel Purple
HEX: #B19CD9 | Modern Palette
Color Specifications
#B19CD9
177, 156, 217
260°, 44% ,73%
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
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 #B19CD9 from deepest shade to lightest tint.
Frequently Asked Questions
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.
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);
}