Old Lavender
HEX: #796878 | Modern Palette
Color Specifications
#796878
121, 104, 120
303°, 14% ,47%
0, 14.05, 0.83, 52.55
About Old Lavender
Old Lavender (#796878) is a color with RGB(121, 104, 120) and HSL(303.53°, 14.05%, 47.45%). In design, it fits Muted, Warm styles and is suitable for Text, Background, Border. Its complementary color is #687969, which creates strong contrast. Its triadic palette includes #787968 and #687879. The name comes from Old Lavender (English).
- HEX: #796878
- RGB: 121, 104, 120
- HSL: 303.53°, 14.05%, 47.45%
- Style: Muted, Warm
- Use case: Text, Background, Border
- Complementary color: #687969
- Triadic colors: #787968, #687879
- The name comes from Old 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 #796878 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#6D6D78
#6A6A78
#776A6A
#6D6D6D
Frequently Asked Questions
Name, History & Etymology
History
The term 'Old Lavender' emerged in the late 19th century, likely as a descriptive color name in fashion, interior design, and possibly botanical contexts. It distinguishes itself from brighter or more vibrant lavenders, suggesting a softer, perhaps more 'vintage' or 'antique' hue. The 'old' prefix is common in color naming to denote a muted, desaturated, or classic version of a color (e.g., 'old rose', 'old gold'). Its usage peaked in the early to mid-20th century.
First Recorded Use
1890s
Cultural Associations
Culturally, 'Old Lavender' evokes a sense of nostalgia, gentleness, and often femininity. It has been popular in vintage aesthetics, shabby chic decor, and for items intended to have a classic or antique feel. It's less about the age of the item and more about the aesthetic quality of the color itself. It can be associated with heirloom items, delicate fabrics, and a bygone era of elegance.
Code Snippets
/* Background */
.element {
background-color: #796878;
}
/* Text */
.element {
color: #796878;
}
/* Border */
.element {
border: 1px solid #796878;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#796878,
#688A6A
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#796878,
#688A6A
);
}
// SCSS variable
$old-lavender: #796878;
// With RGB channels (useful for rgba() usage)
$old-lavender-r: 121;
$old-lavender-g: 104;
$old-lavender-b: 120;
// Usage
.element {
background-color: $old-lavender;
color: rgba($old-lavender-r, $old-lavender-g, $old-lavender-b, 0.8);
}