Lavender (floral)
HEX: #B57EDC | Modern Palette
Color Specifications
#B57EDC
181, 126, 220
275°, 42% ,86%
17.73, 42.73, 0, 13.73
About Lavender (floral)
Lavender (floral) (#B57EDC) is a color with RGB(181, 126, 220) and HSL(275.11°, 42.73%, 86.27%). In design, it is suitable for Text, Background, Print. Its complementary color is #A5DC7E, which creates strong contrast. Its triadic palette includes #DCB57E and #7EDCB5. The name comes from lavare (Latin).
- HEX: #B57EDC
- RGB: 181, 126, 220
- HSL: 275.11°, 42.73%, 86.27%
- Use case: Text, Background, Print
- Complementary color: #A5DC7E
- Triadic colors: #DCB57E, #7EDCB5
- The name comes from lavare (Latin).
Live Components
Color Palettes
Lavender (floral) #B57EDC 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 (floral) #B57EDC pairs with #A5DC7E as its complementary color, and #DCB57E and #7EDCB5 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#9191DB
#8585DC
#A98F8F
#959595
Frequently Asked Questions
Name, History & Etymology
History
The word 'lavender' is believed to derive from the Latin 'lavare' (to wash), possibly due to the plant's use in scented washes and laundry since ancient times. Alternatively, it might come from 'livere' (bluish), referring to the color. The plant itself has been cultivated for thousands of years, with evidence of its use by ancient Egyptians for mummification and perfume, and by Romans for bathing and cooking. As a color name, 'lavender' emerged later, likely in the 18th century, to describe the pale purple hue of the flower.
First Recorded Use
13th-14th century (as a color/plant name)
Cultural Associations
Lavender is widely associated with purity, silence, devotion, serenity, grace, and calmness. In Victorian times, lavender symbolized distrust, but also love and devotion. It is often used in aromatherapy for its calming and relaxing properties, believed to reduce stress and improve sleep. Culturally, it's a popular scent in soaps, perfumes, and cleaning products. In some traditions, lavender is believed to ward off evil and bring good luck.
Code Snippets
/* Background */
.element {
background-color: #B57EDC;
}
/* Text */
.element {
color: #B57EDC;
}
/* Border */
.element {
border: 1px solid #B57EDC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B57EDC,
#D9EBCD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B57EDC,
#D9EBCD
);
}
// SCSS variable
$lavender-(floral): #B57EDC;
// With RGB channels (useful for rgba() usage)
$lavender-(floral)-r: 181;
$lavender-(floral)-g: 126;
$lavender-(floral)-b: 220;
// Usage
.element {
background-color: $lavender-(floral);
color: rgba($lavender-(floral)-r, $lavender-(floral)-g, $lavender-(floral)-b, 0.8);
}