Plum
HEX: #8E4585 | Modern Palette
Color Specifications
#8E4585
142, 69, 133
307°, 51% ,55%
0, 51.41, 6.34, 44.31
About Plum
Plum (#8E4585) is a color with RGB(142, 69, 133) and HSL(307.4°, 51.41%, 55.69%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #458E4E, which creates strong contrast. Its triadic palette includes #858E45 and #45858E. The name comes from Plum (English).
- HEX: #8E4585
- RGB: 142, 69, 133
- HSL: 307.4°, 51.41%, 55.69%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #458E4E
- Triadic colors: #858E45, #45858E
- The name comes from Plum (English).
Live Components
Color Palettes
Plum #8E4585 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
Plum #8E4585 pairs with #458E4E as its complementary color, and #858E45 and #45858E 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 'plum' derives from Old English 'plume', which itself comes from Vulgar Latin '*pruna' (plural of 'prunum'), ultimately from Ancient Greek 'proumnon'. The fruit has been cultivated for thousands of years. As a color name, 'plum' emerged in the 19th century to describe the deep reddish-purple hue associated with the ripe fruit. The specific hexadecimal color #8e4585 is a modern digital representation of this color.
First Recorded Use
Before 12th century (as fruit); 1800s (as color name)
Cultural Associations
Plums hold various cultural significances. In some cultures, they symbolize perseverance and hope, particularly plum blossoms in East Asian traditions (e.g., Chinese and Japanese art and literature). The phrase 'a plum job' or 'a plum role' in English refers to something highly desirable or advantageous, likely stemming from the fruit's sweetness and perceived value. The color plum is often associated with luxury, royalty (due to its proximity to purple), and sophistication. It can also evoke feelings of mystery or introspection.
Code Snippets
/* Background */
.element {
background-color: #8E4585;
}
/* Text */
.element {
color: #8E4585;
}
/* Border */
.element {
border: 1px solid #8E4585;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#8E4585,
#54C862
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#8E4585,
#54C862
);
}
// SCSS variable
$plum: #8E4585;
// With RGB channels (useful for rgba() usage)
$plum-r: 142;
$plum-g: 69;
$plum-b: 133;
// Usage
.element {
background-color: $plum;
color: rgba($plum-r, $plum-g, $plum-b, 0.8);
}