French Lilac
HEX: #86608E | Modern Palette
Color Specifications
#86608E
134, 96, 142
289°, 32% ,55%
5.63, 32.39, 0, 44.31
About French Lilac
French Lilac (#86608E) is a color with RGB(134, 96, 142) and HSL(289.57°, 32.39%, 55.69%). In design, it fits Muted styles and is suitable for Text, Print. Its complementary color is #688E60, which creates strong contrast. Its triadic palette includes #8E8660 and #608E86. The name comes from French Lilac (English (color name)).
- HEX: #86608E
- RGB: 134, 96, 142
- HSL: 289.57°, 32.39%, 55.69%
- Style: Muted
- Use case: Text, Print
- Complementary color: #688E60
- Triadic colors: #8E8660, #608E86
- The name comes from French Lilac (English (color name)).
Live Components
Color Palettes
French Lilac #86608E 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
French Lilac #86608E pairs with #688E60 as its complementary color, and #8E8660 and #608E86 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 color lilac itself derives from the Persian word 'nilak' meaning 'bluish,' which came into English via French 'lilac.' The addition of 'French' to 'lilac' likely served to distinguish a particular nuance of the purple-pink hue. France has a long history of influence in fashion, art, and horticulture, and associating a color with 'French' often implied a certain elegance, sophistication, or a specific, perhaps slightly muted or refined, shade of the flower. It might also have been used to differentiate it from other 'lilac' shades that were more reddish or bluish. The hex code #86608e represents a medium-dark, desaturated purple, fitting this description.
First Recorded Use
While 'lilac' as a color has existed for centuries, the specific modifier 'French' likely gained traction in the late 19th or early 20th century, a period when many descriptive color names were formalized, often with geographical or botanical prefixes to denote specific variations. Exact first documented use of 'French Lilac' as a distinct color name is difficult to pinpoint without extensive historical textile or paint catalog research, but it aligns with trends of the era.
Cultural Associations
Lilacs (Syringa vulgaris) are highly symbolic flowers, often associated with spring, renewal, and first love. In France, lilacs are popular garden plants. The 'French' descriptor could evoke images of Parisian gardens, classic French fashion, or the sophisticated palette often seen in French art and design. It suggests a particular aesthetic quality beyond just the basic color 'lilac.'
Code Snippets
/* Background */
.element {
background-color: #86608E;
}
/* Text */
.element {
color: #86608E;
}
/* Border */
.element {
border: 1px solid #86608E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#86608E,
#76B369
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#86608E,
#76B369
);
}
// SCSS variable
$french-lilac: #86608E;
// With RGB channels (useful for rgba() usage)
$french-lilac-r: 134;
$french-lilac-g: 96;
$french-lilac-b: 142;
// Usage
.element {
background-color: $french-lilac;
color: rgba($french-lilac-r, $french-lilac-g, $french-lilac-b, 0.8);
}