Pansy Purple
HEX: #78184A | Modern Palette
Color Specifications
#78184A
120, 24, 74
328°, 80% ,47%
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
Color Palettes
Pansy Purple #78184A is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Pansy Purple #78184A pairs with #187846 as its complementary color, and #4A7818 and #184A78 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}