Bright Lavender
HEX: #BF94E4 | Modern Palette
Color Specifications
#BF94E4
191, 148, 228
272°, 59% ,73%
16, 35, 0, 11
About Bright Lavender
Bright Lavender (#BF94E4) is a color with RGB(191, 148, 228) and HSL(272.3°, 59.7%, 73.7%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #B9E494, which creates strong contrast. Its triadic palette includes #E4BF94 and #94E4BF.
- HEX: #BF94E4
- RGB: 191, 148, 228
- HSL: 272.3°, 59.7%, 73.7%
- Mood: Romantic
- Use case: Text, Button, Logo
- Complementary color: #B9E494
- Triadic colors: #E4BF94, #94E4BF
Live Components
Color Palettes
Bright Lavender #BF94E4 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Bright Lavender #BF94E4 pairs with #B9E494 as its complementary color, and #E4BF94 and #94E4BF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #BF94E4;
}
/* Text */
.element {
color: #BF94E4;
}
/* Border */
.element {
border: 1px solid #BF94E4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BF94E4,
#B9E494
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BF94E4,
#B9E494
);
}
// SCSS variable
$bright-lavender: #BF94E4;
// With RGB channels (useful for rgba() usage)
$bright-lavender-r: 191;
$bright-lavender-g: 148;
$bright-lavender-b: 228;
// Usage
.element {
background-color: $bright-lavender;
color: rgba($bright-lavender-r, $bright-lavender-g, $bright-lavender-b, 0.8);
}