Lavender Blush
HEX: #FFF0F5 | Modern Palette
Color Specifications
#FFF0F5
255, 240, 245
340°, 100% ,97%
0, 6, 4, 0
About Lavender Blush
Lavender Blush (#FFF0F5) is a color with RGB(255, 240, 245) and HSL(340°, 100%, 97.1%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #F0FFFA, which creates strong contrast. Its triadic palette includes #F5FFF0 and #F0F5FF. The name comes from Lavender Blush (English).
- HEX: #FFF0F5
- RGB: 255, 240, 245
- HSL: 340°, 100%, 97.1%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #F0FFFA
- Triadic colors: #F5FFF0, #F0F5FF
- The name comes from Lavender Blush (English).
Live Components
Color Palettes
Lavender Blush #FFF0F5 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
Lavender Blush #FFF0F5 pairs with #F0FFFA as its complementary color, and #F5FFF0 and #F0F5FF 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 term 'lavender' for a color has existed for centuries, referring to the pale purple hue of the lavender flower. 'Blush' implies a very light, delicate, and often pinkish or reddish tint. Combining them creates a color that is a very pale, almost off-white purple with a hint of pink. Its standardization as '#fff0f5' is part of the broader effort to define a common set of colors for computing and web design, notably within the X11 color system, which was developed in the late 1980s and early 1990s. This system provided a set of named colors that could be used across different platforms.
First Recorded Use
The specific color name 'Lavender Blush' as a standardized color, particularly in digital and web contexts (like X11 color names), emerged later, but the descriptive phrase 'lavender blush' to describe a color would have been used earlier. Its inclusion in the X11 color list solidified its specific hex value.
Cultural Associations
Lavender colors are often associated with tranquility, grace, elegance, and femininity. The 'blush' aspect further emphasizes softness and delicacy. It's a popular color in wedding themes, baby products, interior design for serene spaces, and fashion where a subtle, romantic touch is desired. It can evoke feelings of nostalgia or a gentle, dreamy quality.
Code Snippets
/* Background */
.element {
background-color: #FFF0F5;
}
/* Text */
.element {
color: #FFF0F5;
}
/* Border */
.element {
border: 1px solid #FFF0F5;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFF0F5,
#F0FFFA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFF0F5,
#F0FFFA
);
}
// SCSS variable
$lavender-blush: #FFF0F5;
// With RGB channels (useful for rgba() usage)
$lavender-blush-r: 255;
$lavender-blush-g: 240;
$lavender-blush-b: 245;
// Usage
.element {
background-color: $lavender-blush;
color: rgba($lavender-blush-r, $lavender-blush-g, $lavender-blush-b, 0.8);
}