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

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

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.

Color Characteristics

Mood
Style
Pastel
Use case
Text Print

Accessibility Simulation

Deuteranopia #8484B6
Protanopia #7E7EB6
Tritanopia #8E8484
Achromatopsia #868686

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.

Similar Named Colors

Ube #8878C3 ΔE 5.54
African Violet #B284BE ΔE 6.59

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);
}