Brilliant Lavender
HEX: #F4BBFF | Modern Palette
Color Specifications
#F4BBFF
244, 187, 255
290°, 100% ,86%
4, 27, 0, 0
About Brilliant Lavender
Brilliant Lavender (#F4BBFF) is a color with RGB(244, 187, 255) and HSL(290.3°, 100%, 86.7%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #C6FFBB, which creates strong contrast. Its triadic palette includes #FFF4BB and #BBFFF4. The name comes from Brilliant Lavender (English).
- HEX: #F4BBFF
- RGB: 244, 187, 255
- HSL: 290.3°, 100%, 86.7%
- Mood: Playful
- Style: Neon
- Use case: Text, Button, Background
- Complementary color: #C6FFBB
- Triadic colors: #FFF4BB, #BBFFF4
- The name comes from Brilliant Lavender (English).
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 #F4BBFF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#CECEFE
#C2C2FF
#ECC5C5
#CECECE
Frequently Asked Questions
Name, History & Etymology
History
The word 'brilliant' comes from the French 'brillant', meaning 'shining' or 'sparkling', and entered English in the 17th century. 'Lavender' as a color name derives from the plant of the same name, known for its pale purple flowers, and has been used to describe a color since at least the early 19th century. The combination 'Brilliant Lavender' emphasizes a more vibrant, less muted version of traditional lavender. Its popularization is tied to digital media and commercial product naming where descriptive and appealing color names are common.
First Recorded Use
The specific color name 'Brilliant Lavender' as a distinct named color, especially with a precise hex code like #f4bbff, likely emerged with the advent of digital color systems, web design, and standardized color palettes in the late 20th or early 21st century. While 'brilliant' and 'lavender' have older origins, their combination as a specific color name is more modern.
Cultural Associations
Lavender shades are often associated with calmness, tranquility, femininity, and grace. 'Brilliant Lavender' adds an element of vibrancy and modernity to these associations, suggesting creativity, uniqueness, and a lively spirit. It can be seen in fashion, interior design, and digital aesthetics where a cheerful yet sophisticated purple is desired. It might also evoke feelings of spring, new beginnings, or a whimsical fantasy.
Code Snippets
/* Background */
.element {
background-color: #F4BBFF;
}
/* Text */
.element {
color: #F4BBFF;
}
/* Border */
.element {
border: 1px solid #F4BBFF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F4BBFF,
#C6FFBB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F4BBFF,
#C6FFBB
);
}
// SCSS variable
$brilliant-lavender: #F4BBFF;
// With RGB channels (useful for rgba() usage)
$brilliant-lavender-r: 244;
$brilliant-lavender-g: 187;
$brilliant-lavender-b: 255;
// Usage
.element {
background-color: $brilliant-lavender;
color: rgba($brilliant-lavender-r, $brilliant-lavender-g, $brilliant-lavender-b, 0.8);
}