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
Lenurple #BA93D8 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
Lenurple #BA93D8 pairs with #B1D893 as its complementary color, and #D8BA93 and #93D8BA in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
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.
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);
}