Plum
HEX: #DDA0DD | Modern Palette
Color Specifications
#DDA0DD
221, 160, 221
300°, 47% ,74%
0, 28, 0, 13
About Plum
Plum (#DDA0DD) is a color with RGB(221, 160, 221) and HSL(300°, 47.3%, 74.7%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #A0DDA0, which creates strong contrast. Its triadic palette includes #DDDDA0 and #A0DDDD. The name comes from Plum (English).
- HEX: #DDA0DD
- RGB: 221, 160, 221
- HSL: 300°, 47.3%, 74.7%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #A0DDA0
- Triadic colors: #DDDDA0, #A0DDDD
- The name comes from Plum (English).
Live Components
Color Palettes
Plum #DDA0DD 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 #DDA0DD pairs with #A0DDA0 as its complementary color, and #DDDDA0 and #A0DDDD 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' comes from the Old English 'plume', which itself is derived from the Latin 'prunum'. This Latin term referred to the plum fruit and tree. The word has maintained a consistent meaning related to the fruit throughout its history in English. Over time, 'plum' also developed a figurative meaning, referring to something desirable or excellent, as in 'a plum job'.
First Recorded Use
Before 12th century
Cultural Associations
Plums are cultivated worldwide and are significant in many cuisines, eaten fresh, dried (as prunes), or used in jams, desserts, and alcoholic beverages. In some cultures, plums symbolize perseverance and hope, particularly in East Asian art and literature where plum blossoms are highly revered for blooming in late winter. The color 'plum' (#dda0dd) is a medium purple with a reddish tinge, often associated with richness, luxury, and royalty, though it's a lighter, more pastel shade than a deep, dark plum.
Code Snippets
/* Background */
.element {
background-color: #DDA0DD;
}
/* Text */
.element {
color: #DDA0DD;
}
/* Border */
.element {
border: 1px solid #DDA0DD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DDA0DD,
#A0DDA0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DDA0DD,
#A0DDA0
);
}
// SCSS variable
$plum: #DDA0DD;
// With RGB channels (useful for rgba() usage)
$plum-r: 221;
$plum-g: 160;
$plum-b: 221;
// Usage
.element {
background-color: $plum;
color: rgba($plum-r, $plum-g, $plum-b, 0.8);
}