Mulberry
HEX: #C54B8C | Modern Palette
Color Specifications
#C54B8C
197, 75, 140
328°, 51% ,53%
0, 62, 29, 23
About Mulberry
Mulberry (#C54B8C) is a color with RGB(197, 75, 140) and HSL(328°, 51.3%, 53.3%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #4BC584, which creates strong contrast. Its triadic palette includes #8CC54B and #4B8CC5. The name comes from morus (Latin).
- HEX: #C54B8C
- RGB: 197, 75, 140
- HSL: 328°, 51.3%, 53.3%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #4BC584
- Triadic colors: #8CC54B, #4B8CC5
- The name comes from morus (Latin).
Live Components
Color Palettes
Mulberry #C54B8C 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
Mulberry #C54B8C pairs with #4BC584 as its complementary color, and #8CC54B and #4B8CC5 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 'mulberry' entered English from Old French 'mure' (modern French 'mûre'), which itself derived from Latin 'morus'. The 'berry' suffix was added in English, likely by analogy with other fruit names like 'strawberry' or 'raspberry'. The Latin 'morus' is thought to have come from Ancient Greek 'moron' (μῶρον), also meaning mulberry. The tree and its fruit have been known and cultivated for millennia, particularly in Asia, for its fruit and leaves (essential for silkworms).
First Recorded Use
Late 14th Century
Cultural Associations
Mulberry trees hold significant cultural importance, especially in China, where their leaves are the sole food source for silkworms, making them integral to the silk industry for thousands of years. In some cultures, mulberries symbolize wisdom or patience due to their slow growth. The fruit itself is enjoyed fresh, dried, or in jams and wines across many regions. There are various species, including white, red, and black mulberries, each with slightly different characteristics and uses.
Code Snippets
/* Background */
.element {
background-color: #C54B8C;
}
/* Text */
.element {
color: #C54B8C;
}
/* Border */
.element {
border: 1px solid #C54B8C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C54B8C,
#4BC584
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C54B8C,
#4BC584
);
}
// SCSS variable
$mulberry: #C54B8C;
// With RGB channels (useful for rgba() usage)
$mulberry-r: 197;
$mulberry-g: 75;
$mulberry-b: 140;
// Usage
.element {
background-color: $mulberry;
color: rgba($mulberry-r, $mulberry-g, $mulberry-b, 0.8);
}