Lenurple

HEX: #BA93D8 | Modern Palette

On White
2.54:1
FAIL
On Black
8.25:1
PASS

Color Specifications

HEX
#BA93D8
RGB
186, 147, 216
HSL
273°, 31% ,84%
CMYK
13.89, 31.94, 0, 15.29

About Lenurple

Lenurple (#BA93D8) is a color with RGB(186, 147, 216) and HSL(273.91°, 31.94%, 84.71%). In design, it fits Pastel styles and is suitable for Text, Background, Print. Its complementary color is #B1D893, which creates strong contrast. Its triadic palette includes #D8BA93 and #93D8BA.

  • HEX: #BA93D8
  • RGB: 186, 147, 216
  • HSL: 273.91°, 31.94%, 84.71%
  • Style: Pastel
  • Use case: Text, Background, Print
  • Complementary color: #B1D893
  • Triadic colors: #D8BA93, #93D8BA

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 #BA93D8 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #A0A0D7
Protanopia #9898D8
Tritanopia #B19E9E
Achromatopsia #A2A2A2

Frequently Asked Questions

Lenurple (#BA93D8) is a color with RGB(186, 147, 216) and HSL(273.91°, 31.94%, 84.71%).

#BA93D8 pairs strongly with #B1D893 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#BA93D8 is suitable for Text, Background, Print and works well with Pastel styles.

Similar Named Colors

Bright Lavender #BF94E4 ΔE 2.28
Light Pastel Purple #B19CD9 ΔE 4.10
Wisteria #C9A0DC ΔE 4.40
Bright Ube #D19FE8 ΔE 4.81

Code Snippets

/* Background */
.element {
    background-color: #BA93D8;
}

/* Text */
.element {
    color: #BA93D8;
}

/* Border */
.element {
    border: 1px solid #BA93D8;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #BA93D8,
        #D6E4CC
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #BA93D8,
        #D6E4CC
    );
}

// SCSS variable
$lenurple: #BA93D8;

// With RGB channels (useful for rgba() usage)
$lenurple-r: 186;
$lenurple-g: 147;
$lenurple-b: 216;

// Usage
.element {
    background-color: $lenurple;
    color: rgba($lenurple-r, $lenurple-g, $lenurple-b, 0.8);
}