Antique Fuchsia
HEX: #915C83 | Modern Palette
Color Specifications
#915C83
145, 92, 131
315°, 36% ,56%
0, 36.55, 9.66, 43.14
About Antique Fuchsia
Antique Fuchsia (#915C83) is a color with RGB(145, 92, 131) and HSL(315.85°, 36.55%, 56.86%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #5C916A, which creates strong contrast. Its triadic palette includes #83915C and #5C8391. The name comes from Antique Fuchsia (English).
- HEX: #915C83
- RGB: 145, 92, 131
- HSL: 315.85°, 36.55%, 56.86%
- Mood: Romantic
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #5C916A
- Triadic colors: #83915C, #5C8391
- The name comes from Antique Fuchsia (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 #915C83 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color fuchsia itself is named after the fuchsia flower, which was named by Charles Plumier in honor of German botanist Leonhart Fuchs in the late 17th century. The color name entered common usage around 1859. The addition of 'antique' to color names is a relatively modern trend, reflecting a desire for softer, less vibrant, and more 'timeless' or 'heritage' aesthetics in various design fields, from interior decor to fashion and graphic design. 'Antique Fuchsia' specifically suggests a less saturated, perhaps slightly greyed or browned version of the bright, vivid fuchsia.
First Recorded Use
While 'fuchsia' as a color name dates back to the mid-19th century, the specific modifier 'antique' to denote a muted or vintage version of a color became more common in design and fashion terminology in the late 20th century, particularly from the 1980s onwards.
Cultural Associations
This color evokes a sense of nostalgia, vintage charm, and understated elegance. It's often used in contexts aiming for a sophisticated yet feminine feel, without the overt boldness of a pure fuchsia. It can be found in vintage-inspired fashion, shabby chic decor, and designs that aim for a romantic or historical aesthetic. Its muted quality makes it more versatile than its brighter counterpart, allowing it to blend more easily with a wider range of palettes.
Code Snippets
/* Background */
.element {
background-color: #915C83;
}
/* Text */
.element {
color: #915C83;
}
/* Border */
.element {
border: 1px solid #915C83;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#915C83,
#69B97E
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#915C83,
#69B97E
);
}
// SCSS variable
$antique-fuchsia: #915C83;
// With RGB channels (useful for rgba() usage)
$antique-fuchsia-r: 145;
$antique-fuchsia-g: 92;
$antique-fuchsia-b: 131;
// Usage
.element {
background-color: $antique-fuchsia;
color: rgba($antique-fuchsia-r, $antique-fuchsia-g, $antique-fuchsia-b, 0.8);
}