Pastel Purple
HEX: #B39EB5 | Modern Palette
Color Specifications
#B39EB5
179, 158, 181
294°, 13% ,66%
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
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 #B39EB5 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A4A4B5
#A0A0B5
#B0A1A1
#A4A4A4
Frequently Asked Questions
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);
}