Rich Lavender
HEX: #A76BCF | Modern Palette
Color Specifications
#A76BCF
167, 107, 207
276°, 48% ,81%
19.32, 48.31, 0, 18.82
About Rich Lavender
Rich Lavender (#A76BCF) is a color with RGB(167, 107, 207) and HSL(276°, 48.31%, 81.18%). In design, it is suitable for Text, Button, Background. Its complementary color is #93CF6B, which creates strong contrast. Its triadic palette includes #CFA76B and #6BCFA7. The name comes from Rich Lavender (English).
- HEX: #A76BCF
- RGB: 167, 107, 207
- HSL: 276°, 48.31%, 81.18%
- Use case: Text, Button, Background
- Complementary color: #93CF6B
- Triadic colors: #CFA76B, #6BCFA7
- The name comes from Rich 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 #A76BCF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#8080CE
#7474CF
#9A7E7E
#848484
Frequently Asked Questions
Name, History & Etymology
History
The color lavender itself derives its name from the lavender flower (Lavandula), known for its pale purple hue. The word 'lavender' entered English in the 17th century. As color science and descriptive language evolved, modifiers like 'rich,' 'pale,' 'deep,' etc., became common to specify variations of a base color. 'Rich Lavender' distinguishes itself from lighter, more muted lavenders, suggesting a more intense and saturated version. Its popularity has grown with trends favoring deeper, more luxurious jewel tones and sophisticated pastels.
First Recorded Use
The specific color name 'Rich Lavender' likely emerged as color naming became more nuanced and descriptive, particularly in fashion, interior design, and digital color palettes. While 'lavender' has a long history, the 'rich' qualifier is a more modern addition to differentiate specific shades.
Cultural Associations
Lavender, in general, is often associated with calmness, tranquility, purity, and grace. The 'rich' descriptor adds layers of luxury, sophistication, and sometimes even a touch of regality or drama. It can be seen in high-end fashion, elegant home decor, and branding for products aiming for a refined yet vibrant aesthetic. It's less common in very traditional contexts and more prevalent in contemporary design.
Code Snippets
/* Background */
.element {
background-color: #A76BCF;
}
/* Text */
.element {
color: #A76BCF;
}
/* Border */
.element {
border: 1px solid #A76BCF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A76BCF,
#CAE6B8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A76BCF,
#CAE6B8
);
}
// SCSS variable
$rich-lavender: #A76BCF;
// With RGB channels (useful for rgba() usage)
$rich-lavender-r: 167;
$rich-lavender-g: 107;
$rich-lavender-b: 207;
// Usage
.element {
background-color: $rich-lavender;
color: rgba($rich-lavender-r, $rich-lavender-g, $rich-lavender-b, 0.8);
}