Lavender Indigo
HEX: #9457EB | Modern Palette
Color Specifications
#9457EB
148, 87, 235
264°, 62% ,92%
37.02, 62.98, 0, 7.84
About Lavender Indigo
Lavender Indigo (#9457EB) is a color with RGB(148, 87, 235) and HSL(264.73°, 62.98%, 92.16%). In design, it is suitable for Text, Button, Background. Its complementary color is #AEEB57, which creates strong contrast. Its triadic palette includes #EB9457 and #57EB94.
- HEX: #9457EB
- RGB: 148, 87, 235
- HSL: 264.73°, 62.98%, 92.16%
- Use case: Text, Button, Background
- Complementary color: #AEEB57
- Triadic colors: #EB9457, #57EB94
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 #9457EB from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#6D6DEA
#6060EB
#7B7878
#797979
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #9457EB;
}
/* Text */
.element {
color: #9457EB;
}
/* Border */
.element {
border: 1px solid #9457EB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9457EB,
#EDF8DE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9457EB,
#EDF8DE
);
}
// SCSS variable
$lavender-indigo: #9457EB;
// With RGB channels (useful for rgba() usage)
$lavender-indigo-r: 148;
$lavender-indigo-g: 87;
$lavender-indigo-b: 235;
// Usage
.element {
background-color: $lavender-indigo;
color: rgba($lavender-indigo-r, $lavender-indigo-g, $lavender-indigo-b, 0.8);
}