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