Vivid Mulberry
HEX: #B80CE3 | Modern Palette
Color Specifications
#B80CE3
184, 12, 227
288°, 94% ,89%
18.94, 94.71, 0, 10.98
About Vivid Mulberry
Vivid Mulberry (#B80CE3) is a color with RGB(184, 12, 227) and HSL(288°, 94.71%, 89.02%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #37E30C, which creates strong contrast. Its triadic palette includes #E3B80C and #0CE3B8. The name comes from Vivid Mulberry (English).
- HEX: #B80CE3
- RGB: 184, 12, 227
- HSL: 288°, 94.71%, 89.02%
- Mood: Playful
- Style: Neon
- Use case: Text, Button, Background
- Complementary color: #37E30C
- Triadic colors: #E3B80C, #0CE3B8
- The name comes from Vivid Mulberry (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 #B80CE3 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#6969E2
#4343E3
#A55959
#6F6F6F
Frequently Asked Questions
Name, History & Etymology
History
The color 'mulberry' itself has a long history, referring to the deep reddish-purple fruit of the mulberry tree. As a color name, it has been used in fashion and art for a considerable time. The addition of 'vivid' serves to differentiate this particular shade from other, potentially darker or more muted, interpretations of mulberry. This trend of using descriptive adjectives (vivid, deep, light, pale, royal, etc.) became more common as color palettes expanded and required more specific nomenclature, especially in the digital age where precise hexadecimal or RGB values define exact shades.
First Recorded Use
The specific compound 'Vivid Mulberry' as a named color likely emerged with the proliferation of digital color systems and standardized color naming conventions (e.g., X11, web colors, design software palettes). While 'mulberry' as a color has existed for centuries, the 'vivid' modifier points to a more modern, precise, and often digitally-defined shade.
Cultural Associations
Mulberry colors often evoke feelings of richness, luxury, and sometimes a touch of mystery due to their deep purple undertones. Purple, in general, has historical associations with royalty, spirituality, and creativity. 'Vivid Mulberry' specifically, with its brightness, can also convey energy and vibrancy. It's a popular color in fashion, interior design, and digital aesthetics, often used to create a bold yet sophisticated statement.
Code Snippets
/* Background */
.element {
background-color: #B80CE3;
}
/* Text */
.element {
color: #B80CE3;
}
/* Border */
.element {
border: 1px solid #B80CE3;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B80CE3,
#D3FEC8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B80CE3,
#D3FEC8
);
}
// SCSS variable
$vivid-mulberry: #B80CE3;
// With RGB channels (useful for rgba() usage)
$vivid-mulberry-r: 184;
$vivid-mulberry-g: 12;
$vivid-mulberry-b: 227;
// Usage
.element {
background-color: $vivid-mulberry;
color: rgba($vivid-mulberry-r, $vivid-mulberry-g, $vivid-mulberry-b, 0.8);
}