Pansy Purple

HEX: #78184A | Modern Palette

On White
10.35:1
PASS
On Black
2.03:1
FAIL

Color Specifications

HEX
#78184A
RGB
120, 24, 74
HSL
328°, 80% ,47%
CMYK
0, 80, 38.33, 52.94

About Pansy Purple

Pansy Purple (#78184A) is a color with RGB(120, 24, 74) and HSL(328.75°, 80%, 47.06%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #187846, which creates strong contrast. Its triadic palette includes #4A7818 and #184A78. The name comes from Pansy (English).

  • HEX: #78184A
  • RGB: 120, 24, 74
  • HSL: 328.75°, 80%, 47.06%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #187846
  • Triadic colors: #4A7818, #184A78
  • The name comes from Pansy (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 #78184A from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #464648
Protanopia #2F2F4A
Tritanopia #762323
Achromatopsia #404040

Frequently Asked Questions

Pansy Purple (#78184A) is a color with RGB(120, 24, 74) and HSL(328.75°, 80%, 47.06%).

#78184A pairs strongly with #187846 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#78184A is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#78184A is commonly associated with Energetic, Bold.

The name Pansy Purple is linked to Pansy from English, meaning From French 'pensée' meaning 'thought', referring to the flower's resemblance to a thoughtful face..

Name, History & Etymology

Origin Word Pansy
Meaning From French 'pensée' meaning 'thought', referring to the flower's resemblance to a thoughtful face.
Language English
First Recorded Use Late 18th Century (for the flower name)

History

The word 'pansy' for the flower comes from the French 'pensée', meaning 'thought'. This is because the flower, with its often drooping head, was thought to resemble a person in contemplation. The color 'Pansy Purple' specifically refers to the deep, rich purple hues often found in pansy flowers, which can range from dark violet to almost black-purple, often with yellow or white centers. As a named color, it gained popularity alongside other floral-inspired shades in fashion and interior design.

First Recorded Use

The color 'Pansy Purple' as a specific named shade likely emerged later, perhaps late 19th or early 20th century, as color naming became more standardized and descriptive. The flower itself has been known as 'pansy' since the late 18th century.

Cultural Associations

Pansies are often associated with remembrance, thoughts, and love. In Victorian floriography (the language of flowers), a pansy could signify 'thinking of you' or 'thoughts of love'. The color 'Pansy Purple' evokes a sense of depth, richness, and sometimes a touch of melancholy or sophistication, reflecting the flower's symbolism. It's a color often seen in traditional floral patterns and can be considered a classic, deep purple shade.

Similar Named Colors

French Plum #811453 ΔE 2.41
Dark Raspberry #872657 ΔE 4.01
Tyrian Purple #66023C ΔE 4.58
Boysenberry #873260 ΔE 6.13

Code Snippets

/* Background */
.element {
    background-color: #78184A;
}

/* Text */
.element {
    color: #78184A;
}

/* Border */
.element {
    border: 1px solid #78184A;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #78184A,
        #18D874
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #78184A,
        #18D874
    );
}

// SCSS variable
$pansy-purple: #78184A;

// With RGB channels (useful for rgba() usage)
$pansy-purple-r: 120;
$pansy-purple-g: 24;
$pansy-purple-b: 74;

// Usage
.element {
    background-color: $pansy-purple;
    color: rgba($pansy-purple-r, $pansy-purple-g, $pansy-purple-b, 0.8);
}