Antique Fuchsia

HEX: #915C83 | Modern Palette

On White
5.17:1
PASS
On Black
4.06:1
FAIL

Color Specifications

HEX
#915C83
RGB
145, 92, 131
HSL
315°, 36% ,56%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #6F6F82
Protanopia #646483
Tritanopia #8D6262
Achromatopsia #6D6D6D

Frequently Asked Questions

Antique Fuchsia (#915C83) is a color with RGB(145, 92, 131) and HSL(315.85°, 36.55%, 56.86%).

#915C83 pairs strongly with #5C916A as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#915C83 is suitable for Text, Logo, Print and works well with Warm styles.

#915C83 is commonly associated with Romantic.

The name Antique Fuchsia is linked to Antique Fuchsia from English, meaning A muted, vintage-like shade of fuchsia, reminiscent of older dyes or faded fabrics..

Name, History & Etymology

Origin Word Antique Fuchsia
Meaning A muted, vintage-like shade of fuchsia, reminiscent of older dyes or faded fabrics.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Chinese Violet #856088 ΔE 4.03
French Lilac #86608E ΔE 4.87
Razzmic Berry #8D4E85 ΔE 5.18
Twilight Lavender #8A496B ΔE 6.83

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);
}