Languid Lavender
HEX: #D6CADD | Modern Palette
Color Specifications
#D6CADD
214, 202, 221
277°, 21% ,82%
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
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 #D6CADD from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#CECEDD
#CBCBDD
#D3CDCD
#CECECE
Frequently Asked Questions
Name, History & Etymology
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.
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);
}