Deep Lilac
HEX: #9955BB | Modern Palette
Color Specifications
#9955BB
153, 85, 187
280°, 54% ,73%
18.18, 54.55, 0, 26.67
About Deep Lilac
Deep Lilac (#9955BB) is a color with RGB(153, 85, 187) and HSL(280°, 54.55%, 73.33%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #77BB55, which creates strong contrast. Its triadic palette includes #BB9955 and #55BB99. The name comes from Deep Lilac (English).
- HEX: #9955BB
- RGB: 153, 85, 187
- HSL: 280°, 54.55%, 73.33%
- Mood: Romantic
- Use case: Text, Button, Logo
- Complementary color: #77BB55
- Triadic colors: #BB9955, #55BB99
- The name comes from Deep Lilac (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 #9955BB from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color lilac itself is named after the flower of the same name, *Syringa vulgaris*, which is native to the Balkans and was introduced to Europe in the 16th century. The color became popular in fashion and art, particularly during the Victorian era. 'Deep lilac' emerged as a way to distinguish a richer, more saturated version of the pale, delicate lilac. This differentiation became more common with the advent of synthetic dyes, which allowed for a wider and more consistent range of color production. The hex code #9955bb is a modern digital representation of this specific shade.
First Recorded Use
While 'lilac' as a color has existed since the 18th century (referencing the flower), the specific descriptor 'deep lilac' likely gained traction as color naming became more nuanced in fashion, art, and dye industries. Exact first use is difficult to pinpoint but aligns with the period when more precise color variations were being cataloged and marketed.
Cultural Associations
Lilac is often associated with spring, youth, and innocence due to its connection with the flower. It can also symbolize first love or spirituality. A 'deep lilac' might carry a sense of maturity or sophistication compared to a lighter lilac, sometimes evoking a more regal or mysterious feel. It's a color that bridges the gap between pink and purple, often seen as feminine but with a certain depth that can appeal broadly. In some contexts, purple shades, including deep lilac, have been associated with royalty and luxury.
Code Snippets
/* Background */
.element {
background-color: #9955BB;
}
/* Text */
.element {
color: #9955BB;
}
/* Border */
.element {
border: 1px solid #9955BB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9955BB,
#AFE096
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9955BB,
#AFE096
);
}
// SCSS variable
$deep-lilac: #9955BB;
// With RGB channels (useful for rgba() usage)
$deep-lilac-r: 153;
$deep-lilac-g: 85;
$deep-lilac-b: 187;
// Usage
.element {
background-color: $deep-lilac;
color: rgba($deep-lilac-r, $deep-lilac-g, $deep-lilac-b, 0.8);
}