Lavender Indigo
HEX: #9457EB | Modern Palette
On White
4.35:1
FAIL
On Black
4.82:1
PASS
Color Specifications
HEX
#9457EB
RGB
148, 87, 235
HSL
264°, 62% ,92%
CMYK
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
LIGHT
DARK
System Notification Box
Color Palettes
Lavender Indigo #9457EB 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
Lavender Indigo #9457EB pairs with #AEEB57 as its complementary color, and #EB9457 and #57EB94 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
Deuteranopia
#6D6DEA
Protanopia
#6060EB
Tritanopia
#7B7878
Achromatopsia
#797979
Frequently Asked Questions
Lavender Indigo (#9457EB) is a color with RGB(148, 87, 235) and HSL(264.73°, 62.98%, 92.16%).
#9457EB pairs strongly with #AEEB57 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#9457EB is suitable for Text, Button, Background.
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);
}