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
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 #BF94E4 from deepest shade to lightest tint.
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);
}