Wisteria
HEX: #C9A0DC | Modern Palette
Color Specifications
#C9A0DC
201, 160, 220
281°, 46% ,74%
9, 27, 0, 14
About Wisteria
Wisteria (#C9A0DC) is a color with RGB(201, 160, 220) and HSL(281°, 46.2%, 74.5%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #B3DCA0, which creates strong contrast. Its triadic palette includes #DCC9A0 and #A0DCC9. The name comes from Wisteria (English).
- HEX: #C9A0DC
- RGB: 201, 160, 220
- HSL: 281°, 46.2%, 74.5%
- Mood: Romantic
- Use case: Text, Button, Logo
- Complementary color: #B3DCA0
- Triadic colors: #DCC9A0, #A0DCC9
- The name comes from Wisteria (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 #C9A0DC from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name 'Wisteria' was given to the genus of flowering plants. The plant itself has a long history in horticulture, particularly in East Asia (China and Japan) where it has been cultivated for centuries for its beautiful flowers. It was introduced to Europe and North America in the 19th century. The specific color 'wisteria' (#c9a0dc) refers to the characteristic pale purple or lilac hue often associated with the flowers of many Wisteria species.
First Recorded Use
The genus was named by Thomas Nuttall in 1818 in honor of Caspar Wistar (1761–1818), an American physician and anatomist.
Cultural Associations
Wisteria is highly symbolic in various cultures. In Japan, it represents love, longevity, and honor, often appearing in art, poetry, and traditional gardens. Its cascading blooms are a popular subject for festivals and viewing. In Victorian flower language, wisteria could symbolize a passionate love or a welcome. Its beauty and sometimes aggressive growth habit have also led to metaphors about overwhelming beauty or persistent charm.
Code Snippets
/* Background */
.element {
background-color: #C9A0DC;
}
/* Text */
.element {
color: #C9A0DC;
}
/* Border */
.element {
border: 1px solid #C9A0DC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C9A0DC,
#B3DCA0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C9A0DC,
#B3DCA0
);
}
// SCSS variable
$wisteria: #C9A0DC;
// With RGB channels (useful for rgba() usage)
$wisteria-r: 201;
$wisteria-g: 160;
$wisteria-b: 220;
// Usage
.element {
background-color: $wisteria;
color: rgba($wisteria-r, $wisteria-g, $wisteria-b, 0.8);
}