Lavender Blue
HEX: #CCCCFF | Modern Palette
Color Specifications
#CCCCFF
204, 204, 255
240°, 100% ,90%
20, 20, 0, 0
About Lavender Blue
Lavender Blue (#CCCCFF) is a color with RGB(204, 204, 255) and HSL(240°, 100%, 90%). 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 #FFFFCC, which creates strong contrast. Its triadic palette includes #FFCCCC and #CCFFCC. The name comes from Lavender Blue (English).
- HEX: #CCCCFF
- RGB: 204, 204, 255
- HSL: 240°, 100%, 90%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #FFFFCC
- Triadic colors: #FFCCCC, #CCFFCC
- The name comes from Lavender Blue (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 #CCCCFF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color lavender, named after the plant, has been recognized for centuries. The addition of 'blue' to 'lavender' in 'lavender blue' emphasizes a specific hue within the lavender spectrum that leans more towards blue than pink. The folk song 'Lavender Blue (Dilly Dilly)' played a crucial role in popularizing this specific color description. The song's lyrics, 'Lavender's blue, dilly dilly, Lavender's green, When I am king, dilly dilly, You shall be queen,' suggest a long-standing association of the color with romance and royalty. Over time, 'lavender blue' has become a recognized color in fashion, interior design, and art, often associated with softness, tranquility, and nostalgia.
First Recorded Use
The phrase 'lavender blue' gained significant popular recognition through the English folk song 'Lavender Blue (Dilly Dilly)', which is believed to date back to at least the late 18th or early 19th century. While the color 'lavender' itself was recognized earlier, the specific 'lavender blue' combination as a named color shade became more prominent with the song's popularity.
Cultural Associations
The most significant cultural note for 'Lavender Blue' is its strong association with the folk song 'Lavender Blue (Dilly Dilly)'. This song has been a popular nursery rhyme and children's song for generations, ensuring the color's recognition across different age groups. It often evokes feelings of childhood, innocence, and traditional English culture. In broader cultural contexts, lavender shades, including lavender blue, are often linked to femininity, spring, and a sense of calm or spirituality. It's also sometimes used to represent uniqueness or creativity.
Code Snippets
/* Background */
.element {
background-color: #CCCCFF;
}
/* Text */
.element {
color: #CCCCFF;
}
/* Border */
.element {
border: 1px solid #CCCCFF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CCCCFF,
#FFFFCC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CCCCFF,
#FFFFCC
);
}
// SCSS variable
$lavender-blue: #CCCCFF;
// With RGB channels (useful for rgba() usage)
$lavender-blue-r: 204;
$lavender-blue-g: 204;
$lavender-blue-b: 255;
// Usage
.element {
background-color: $lavender-blue;
color: rgba($lavender-blue-r, $lavender-blue-g, $lavender-blue-b, 0.8);
}