Rich Lilac
HEX: #B666D2 | Modern Palette
Color Specifications
#B666D2
182, 102, 210
284°, 54% ,61%
13, 51, 0, 18
About Rich Lilac
Rich Lilac (#B666D2) is a color with RGB(182, 102, 210) and HSL(284.4°, 54.5%, 61.2%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #82D266, which creates strong contrast. Its triadic palette includes #D2B666 and #66D2B6. The name comes from Rich Lilac (English (color name)).
- HEX: #B666D2
- RGB: 182, 102, 210
- HSL: 284.4°, 54.5%, 61.2%
- Mood: Romantic
- Use case: Text, Button, Logo
- Complementary color: #82D266
- Triadic colors: #D2B666, #66D2B6
- The name comes from Rich Lilac (English (color name)).
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 #B666D2 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color lilac itself derives its name from the lilac flower (Syringa vulgaris), which was introduced to Europe from the Ottoman Empire in the 16th century. The color 'lilac' became a recognized shade of pale purple or violet. The addition of 'Rich' serves to differentiate this particular shade from lighter, more pastel lilacs, indicating a higher saturation and often a darker value. This naming convention is common in color science and marketing to describe variations of a base color (e.g., 'Deep Red,' 'Bright Blue,' 'Rich Gold'). The hex code #b666d2 specifically defines a particular point in the RGB color space that aligns with this 'rich lilac' description.
First Recorded Use
While 'lilac' as a color has existed for centuries, the specific descriptor 'Rich Lilac' likely emerged with the proliferation of digital color systems, paint swatches, and fashion terminology requiring more precise and evocative names for variations of existing colors. It's difficult to pinpoint an exact 'first use' date without access to specific brand archives, but its usage became more common in the late 20th and early 21st centuries.
Cultural Associations
Lilac, in general, is often associated with spring, youth, and first love due to the blooming season of the flower. Purple shades, including lilac, have historical ties to royalty, spirituality, and luxury. 'Rich Lilac' specifically might evoke a sense of sophistication, depth, and a more mature elegance compared to a softer, more whimsical pastel lilac. It can be seen as a luxurious or opulent shade of purple, suitable for fashion, interior design, and artistic expression where a vibrant yet deep purple is desired.
Code Snippets
/* Background */
.element {
background-color: #B666D2;
}
/* Text */
.element {
color: #B666D2;
}
/* Border */
.element {
border: 1px solid #B666D2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B666D2,
#82D266
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B666D2,
#82D266
);
}
// SCSS variable
$rich-lilac: #B666D2;
// With RGB channels (useful for rgba() usage)
$rich-lilac-r: 182;
$rich-lilac-g: 102;
$rich-lilac-b: 210;
// Usage
.element {
background-color: $rich-lilac;
color: rgba($rich-lilac-r, $rich-lilac-g, $rich-lilac-b, 0.8);
}