Pale Lavender
HEX: #DCD0FF | Modern Palette
Color Specifications
#DCD0FF
220, 208, 255
255°, 100% ,90%
14, 18, 0, 0
About Pale Lavender
Pale Lavender (#DCD0FF) is a color with RGB(220, 208, 255) and HSL(255.3°, 100%, 90.8%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #F3FFD0, which creates strong contrast. Its triadic palette includes #FFDCD0 and #D0FFDC. The name comes from Pale Lavender (English).
- HEX: #DCD0FF
- RGB: 220, 208, 255
- HSL: 255.3°, 100%, 90.8%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #F3FFD0
- Triadic colors: #FFDCD0, #D0FFDC
- The name comes from Pale Lavender (English).
Live Components
Color Palettes
Pale Lavender #DCD0FF 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
Pale Lavender #DCD0FF pairs with #F3FFD0 as its complementary color, and #FFDCD0 and #D0FFDC 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 lavender itself is named after the lavender flower (genus Lavandula), known for its fragrant purple blooms. The word 'lavender' comes from Old French 'lavandre', which is thought to be derived from Latin 'lavare' (to wash), possibly due to the use of lavender in washing and bathing, or from 'livendula', related to 'lividus' (bluish). 'Pale Lavender' specifically refers to a less saturated, lighter version of this purple hue. It has been a popular color in various eras, often associated with femininity, spring, and delicate aesthetics.
First Recorded Use
The term 'lavender' as a color name emerged in the mid-19th century. 'Pale Lavender' would have naturally followed as a descriptor for lighter variations, likely gaining more specific usage as color standardization and naming became more prevalent in fashion, art, and interior design towards the end of the 19th and beginning of the 20th century.
Cultural Associations
Pale lavender is often associated with tranquility, grace, and elegance. It can evoke feelings of nostalgia, romance, and spirituality. In some contexts, it's linked to spring, new beginnings, and the delicate beauty of nature. It's a common color in children's clothing, particularly for girls, and in wedding decor. Historically, lighter purples and lavenders were sometimes associated with mourning or half-mourning in Victorian times, though this is less common today. It also has associations with aromatherapy and relaxation due to the lavender plant's calming properties.
Code Snippets
/* Background */
.element {
background-color: #DCD0FF;
}
/* Text */
.element {
color: #DCD0FF;
}
/* Border */
.element {
border: 1px solid #DCD0FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DCD0FF,
#F3FFD0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DCD0FF,
#F3FFD0
);
}
// SCSS variable
$pale-lavender: #DCD0FF;
// With RGB channels (useful for rgba() usage)
$pale-lavender-r: 220;
$pale-lavender-g: 208;
$pale-lavender-b: 255;
// Usage
.element {
background-color: $pale-lavender;
color: rgba($pale-lavender-r, $pale-lavender-g, $pale-lavender-b, 0.8);
}