Rich Lilac

HEX: #B666D2 | Modern Palette

On White
3.61:1
FAIL
On Black
5.82:1
PASS

Color Specifications

HEX
#B666D2
RGB
182, 102, 210
HSL
284°, 54% ,61%
CMYK
13, 51, 0, 18

About Rich Lilac

Rich Lilac (#B666D2) is a color with RGB(182, 102, 210) and HSL(284.4°, 54.5%, 61.2%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #82D266, which creates strong contrast. Its triadic palette includes #D2B666 and #66D2B6. The name comes from Rich Lilac (English (color name)).

  • HEX: #B666D2
  • RGB: 182, 102, 210
  • HSL: 284.4°, 54.5%, 61.2%
  • Mood: Romantic
  • Use case: Text, Button, Logo
  • Complementary color: #82D266
  • Triadic colors: #D2B666, #66D2B6
  • The name comes from Rich 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 #B666D2 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #8484D1
Protanopia #7272D2
Tritanopia #AA7B7B
Achromatopsia #878787

Frequently Asked Questions

Rich Lilac (#B666D2) is a color with RGB(182, 102, 210) and HSL(284.4°, 54.5%, 61.2%).

#B666D2 pairs strongly with #82D266 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#B666D2 is suitable for Text, Button, Logo.

#B666D2 is commonly associated with Romantic.

The name Rich Lilac is linked to Rich Lilac from English (color name), meaning A deep, saturated shade of purple, reminiscent of lilac flowers..

Name, History & Etymology

Origin Word Rich Lilac
Meaning A deep, saturated shade of purple, reminiscent of lilac flowers.
Language English (color name)
First Recorded Use Late 20th - Early 21st Century (as a specific named shade)

History

The color lilac itself derives its name from the lilac flower (Syringa vulgaris), which was introduced to Europe from the Ottoman Empire in the 16th century. The color 'lilac' became a recognized shade of pale purple or violet. The addition of 'Rich' serves to differentiate this particular shade from lighter, more pastel lilacs, indicating a higher saturation and often a darker value. This naming convention is common in color science and marketing to describe variations of a base color (e.g., 'Deep Red,' 'Bright Blue,' 'Rich Gold'). The hex code #b666d2 specifically defines a particular point in the RGB color space that aligns with this 'rich lilac' description.

First Recorded Use

While 'lilac' as a color has existed for centuries, the specific descriptor 'Rich Lilac' likely emerged with the proliferation of digital color systems, paint swatches, and fashion terminology requiring more precise and evocative names for variations of existing colors. It's difficult to pinpoint an exact 'first use' date without access to specific brand archives, but its usage became more common in the late 20th and early 21st centuries.

Cultural Associations

Lilac, in general, is often associated with spring, youth, and first love due to the blooming season of the flower. Purple shades, including lilac, have historical ties to royalty, spirituality, and luxury. 'Rich Lilac' specifically might evoke a sense of sophistication, depth, and a more mature elegance compared to a softer, more whimsical pastel lilac. It can be seen as a luxurious or opulent shade of purple, suitable for fashion, interior design, and artistic expression where a vibrant yet deep purple is desired.

Similar Named Colors

Rich Lavender #A76BCF ΔE 3.06
Medium Orchid #BA55D3 ΔE 3.64
Deep Fuchsia #C154C1 ΔE 5.26
Amethyst #9966CC ΔE 5.80

Code Snippets

/* Background */
.element {
    background-color: #B666D2;
}

/* Text */
.element {
    color: #B666D2;
}

/* Border */
.element {
    border: 1px solid #B666D2;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #B666D2,
        #82D266
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #B666D2,
        #82D266
    );
}

// SCSS variable
$rich-lilac: #B666D2;

// With RGB channels (useful for rgba() usage)
$rich-lilac-r: 182;
$rich-lilac-g: 102;
$rich-lilac-b: 210;

// Usage
.element {
    background-color: $rich-lilac;
    color: rgba($rich-lilac-r, $rich-lilac-g, $rich-lilac-b, 0.8);
}