Lilac
HEX: #C8A2C8 | Modern Palette
Color Specifications
#C8A2C8
200, 162, 200
300°, 25% ,71%
0, 19, 0, 22
About Lilac
Lilac (#C8A2C8) is a color with RGB(200, 162, 200) and HSL(300°, 25.7%, 71%). In design, it fits Pastel, Warm styles and is suitable for Text, Border, Print. Its complementary color is #A2C8A2, which creates strong contrast. Its triadic palette includes #C8C8A2 and #A2C8C8. The name comes from nilak (Persian).
- HEX: #C8A2C8
- RGB: 200, 162, 200
- HSL: 300°, 25.7%, 71%
- Style: Pastel, Warm
- Use case: Text, Border, Print
- Complementary color: #A2C8A2
- Triadic colors: #C8C8A2, #A2C8C8
- The name comes from nilak (Persian).
Live Components
Color Palettes
Lilac #C8A2C8 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
Lilac #C8A2C8 pairs with #A2C8A2 as its complementary color, and #C8C8A2 and #A2C8C8 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The lilac flower (Syringa vulgaris) originated in Persia and was introduced to Europe in the 16th century. Its distinctive pale purple color quickly became associated with the plant itself. The color name's establishment in English reflects a broader trend of naming colors after natural objects, particularly flowers, during the Enlightenment period.
First Recorded Use
The color name 'lilac' in English is first recorded in 1775, directly referencing the flower's characteristic pale purple hue. Its adoption followed the increasing popularity of the lilac flower in European gardens.
Cultural Associations
Lilac is often associated with spring, youth, and innocence due to the flower's blooming season. In some cultures, it symbolizes first love or the beginning of a relationship. Its gentle hue has made it a popular choice in fashion and interior design for centuries.
Code Snippets
/* Background */
.element {
background-color: #C8A2C8;
}
/* Text */
.element {
color: #C8A2C8;
}
/* Border */
.element {
border: 1px solid #C8A2C8;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C8A2C8,
#A2C8A2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C8A2C8,
#A2C8A2
);
}
// SCSS variable
$lilac: #C8A2C8;
// With RGB channels (useful for rgba() usage)
$lilac-r: 200;
$lilac-g: 162;
$lilac-b: 200;
// Usage
.element {
background-color: $lilac;
color: rgba($lilac-r, $lilac-g, $lilac-b, 0.8);
}