Lenurple
HEX: #BA93D8 | Modern Palette
Color Specifications
#BA93D8
186, 147, 216
273°, 31% ,84%
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
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 #BA93D8 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A0A0D7
#9898D8
#B19E9E
#A2A2A2
Frequently Asked Questions
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);
}