French Lilac

HEX: #86608E | Modern Palette

On White
5.15:1
PASS
On Black
4.08:1
FAIL

Color Specifications

HEX
#86608E
RGB
134, 96, 142
HSL
289°, 32% ,55%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #86608E from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Muted
Use case
Text Print

Accessibility Simulation

Deuteranopia #6D6D8D
Protanopia #65658E
Tritanopia #816767
Achromatopsia #6D6D6D

Frequently Asked Questions

French Lilac (#86608E) is a color with RGB(134, 96, 142) and HSL(289.57°, 32.39%, 55.69%).

#86608E pairs strongly with #688E60 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#86608E is suitable for Text, Print and works well with Muted styles.

The name French Lilac is linked to French Lilac from English (color name), meaning A color descriptive of the shade of lilac flowers commonly found in France, or associated with French horticulture/fashion..

Name, History & Etymology

Origin Word French Lilac
Meaning A color descriptive of the shade of lilac flowers commonly found in France, or associated with French horticulture/fashion.
Language English (color name)
First Recorded Use Late 19th - Early 20th Century (as a named color)

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.'

Similar Named Colors

Chinese Violet #856088 ΔE 1.70
Antique Fuchsia #915C83 ΔE 4.87
Razzmic Berry #8D4E85 ΔE 6.15
Plum #8E4585 ΔE 8.39

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);
}