Lavender Purple
HEX: #967BB6 | Modern Palette
Color Specifications
#967BB6
150, 123, 182
267°, 32% ,71%
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
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 #967BB6 from deepest shade to lightest tint.
Frequently Asked Questions
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);
}