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