Persian Plum
HEX: #701C1C | Modern Palette
Color Specifications
#701C1C
112, 28, 28
0°, 75% ,43%
0, 75, 75, 56.08
About Persian Plum
Persian Plum (#701C1C) is a color with RGB(112, 28, 28) and HSL(0°, 75%, 43.92%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1C7070, which creates strong contrast. Its triadic palette includes #1C701C and #1C1C70. The name comes from Persian Plum (English).
- HEX: #701C1C
- RGB: 112, 28, 28
- HSL: 0°, 75%, 43.92%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #1C7070
- Triadic colors: #1C701C, #1C1C70
- The name comes from Persian Plum (English).
Live Components
Color Palettes
Persian Plum #701C1C 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
Persian Plum #701C1C pairs with #1C7070 as its complementary color, and #1C701C and #1C1C70 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 color name 'Persian Plum' is a modern descriptive term, likely emerging with the proliferation of digital color systems and web design. While 'plum' as a color has existed for centuries, often referring to a dark purple-red, the 'Persian' modifier adds a specific nuance, possibly evoking the rich, deep colors found in Persian art, textiles, or the specific varieties of plums cultivated in or associated with the region. The hex code #701c1c itself is a very dark, desaturated red with a hint of purple, fitting the 'plum' description. The 'Persian' aspect might imply a certain richness or depth beyond a generic plum.
First Recorded Use
1990s (approximate for specific hex code naming)
Cultural Associations
The term 'Persian' often carries connotations of luxury, ancient civilization, rich history, and vibrant artistry (e.g., Persian rugs, Persian miniatures). When applied to a color like 'plum,' it elevates the shade, suggesting a deeper, more sophisticated, or exotic quality than a simple 'plum' color. Plums themselves are often associated with richness, sweetness, and late summer/autumn harvests.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #701C1C;
}
/* Text */
.element {
color: #701C1C;
}
/* Border */
.element {
border: 1px solid #701C1C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#701C1C,
#1CC4C4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#701C1C,
#1CC4C4
);
}
// SCSS variable
$persian-plum: #701C1C;
// With RGB channels (useful for rgba() usage)
$persian-plum-r: 112;
$persian-plum-g: 28;
$persian-plum-b: 28;
// Usage
.element {
background-color: $persian-plum;
color: rgba($persian-plum-r, $persian-plum-g, $persian-plum-b, 0.8);
}