Lavender Purple
HEX: #967BB6 | Modern Palette
On White
3.62:1
FAIL
On Black
5.81:1
PASS
Color Specifications
HEX
#967BB6
RGB
150, 123, 182
HSL
267°, 32% ,71%
CMYK
17.58, 32.42, 0, 28.63
About Lavender Purple
Lavender Purple (#967BB6) is a color with RGB(150, 123, 182) and HSL(267.46°, 32.42%, 71.37%). In design, it fits Pastel styles and is suitable for Text, Print. Its complementary color is #9BB67B, which creates strong contrast. Its triadic palette includes #B6967B and #7BB696.
- HEX: #967BB6
- RGB: 150, 123, 182
- HSL: 267.46°, 32.42%, 71.37%
- Style: Pastel
- Use case: Text, Print
- Complementary color: #9BB67B
- Triadic colors: #B6967B, #7BB696
Live Components
LIGHT
DARK
System Notification Box
Color Palettes
Lavender Purple #967BB6 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
Lavender Purple #967BB6 pairs with #9BB67B as its complementary color, and #B6967B and #7BB696 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Lavender Purple (#967BB6) is a color with RGB(150, 123, 182) and HSL(267.46°, 32.42%, 71.37%).
#967BB6 pairs strongly with #9BB67B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#967BB6 is suitable for Text, Print and works well with Pastel styles.
Code Snippets
/* Background */
.element {
background-color: #967BB6;
}
/* Text */
.element {
color: #967BB6;
}
/* Border */
.element {
border: 1px solid #967BB6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#967BB6,
#B8CE9E
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#967BB6,
#B8CE9E
);
}
// SCSS variable
$lavender-purple: #967BB6;
// With RGB channels (useful for rgba() usage)
$lavender-purple-r: 150;
$lavender-purple-g: 123;
$lavender-purple-b: 182;
// Usage
.element {
background-color: $lavender-purple;
color: rgba($lavender-purple-r, $lavender-purple-g, $lavender-purple-b, 0.8);
}