Languid Lavender

HEX: #D6CADD | Modern Palette

On White
1.57:1
FAIL
On Black
13.35:1
PASS

Color Specifications

HEX
#D6CADD
RGB
214, 202, 221
HSL
277°, 21% ,82%
CMYK
3, 9, 0, 13

About Languid Lavender

Languid Lavender (#D6CADD) is a color with RGB(214, 202, 221) and HSL(277.9°, 21.8%, 82.9%). In design, it fits Pastel styles and is suitable for Text, Background, Print. Its complementary color is #D1DDCA, which creates strong contrast. Its triadic palette includes #DDD6CA and #CADDD6. The name comes from Languid Lavender (English).

  • HEX: #D6CADD
  • RGB: 214, 202, 221
  • HSL: 277.9°, 21.8%, 82.9%
  • Style: Pastel
  • Use case: Text, Background, Print
  • Complementary color: #D1DDCA
  • Triadic colors: #DDD6CA, #CADDD6
  • The name comes from Languid Lavender (English).

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

Color Characteristics

Mood
Style
Pastel
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #CECEDD
Protanopia #CBCBDD
Tritanopia #D3CDCD
Achromatopsia #CECECE

Frequently Asked Questions

Languid Lavender (#D6CADD) is a color with RGB(214, 202, 221) and HSL(277.9°, 21.8%, 82.9%).

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

#D6CADD is suitable for Text, Background, Print and works well with Pastel styles.

The name Languid Lavender is linked to Languid Lavender from English, meaning A pale, somewhat desaturated shade of purple, evoking a sense of calm, relaxation, or weariness. 'Languid' means slow, relaxed, or disinclined to physical exertion; 'Lavender' refers to the plant and its characteristic light purple color..

Name, History & Etymology

Origin Word Languid Lavender
Meaning A pale, somewhat desaturated shade of purple, evoking a sense of calm, relaxation, or weariness. 'Languid' means slow, relaxed, or disinclined to physical exertion; 'Lavender' refers to the plant and its characteristic light purple color.
Language English
First Recorded Use Modern (20th-21st Century)

History

Lavender as a color name has been used since at least 1705, referring to the pale purple hue of the lavender flower. 'Languid' entered English in the late 16th century from Latin 'languidus,' meaning 'faint, sluggish.' The combination 'Languid Lavender' is a descriptive compound, not a historically established color name like 'royal blue' or 'emerald green.' It's part of a trend to create evocative and nuanced color names to differentiate subtle shades, often for marketing or artistic purposes. The hex code #d6cadd further specifies a very light, slightly greyed purple, aligning with the 'languid' descriptor.

First Recorded Use

The specific combination 'Languid Lavender' as a named color is likely a modern descriptive term, emerging with the proliferation of named color palettes in digital design, paint industries, and fashion. While 'languid' and 'lavender' have older origins, their pairing for a specific color nuance is contemporary. Exact first use is difficult to pinpoint without a specific historical color dictionary entry, but it fits within the descriptive naming trends of the late 20th and early 21st centuries.

Cultural Associations

Lavender colors often symbolize purity, devotion, serenity, and luxury. In some cultures, purple shades are associated with royalty and spirituality. The 'languid' aspect adds a layer of softness, introspection, or even melancholy. It might be used in contexts aiming for a sophisticated, calming, or slightly melancholic aesthetic, such as in interior design for bedrooms, spa environments, or in fashion for relaxed, flowing garments. It avoids the vibrancy of brighter purples, opting for a more subdued and mature feel.

Similar Named Colors

Thistle #D8BFD8 ΔE 5.17
Lavender Gray #C4C3D0 ΔE 5.92
Queen Pink #E8CCD7 ΔE 6.28
Soap #CEC8EF ΔE 6.89

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #D6CADD,
        #D1DDCA
    );
}

// SCSS variable
$languid-lavender: #D6CADD;

// With RGB channels (useful for rgba() usage)
$languid-lavender-r: 214;
$languid-lavender-g: 202;
$languid-lavender-b: 221;

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