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
Pastel Purple #B39EB5 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
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
Pastel Purple #B39EB5 pairs with #A0B59E as its complementary color, and #B5B39E and #9EB5B3 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
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.
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);
}