Opera Mauve
HEX: #B784A7 | Modern Palette
Color Specifications
#B784A7
183, 132, 167
318°, 26% ,61%
0, 28, 9, 28
About Opera Mauve
Opera Mauve (#B784A7) is a color with RGB(183, 132, 167) and HSL(318.8°, 26.2%, 61.8%). In design, it fits Muted, Warm styles and is suitable for Text, Border, Print. Its complementary color is #84B794, which creates strong contrast. Its triadic palette includes #A7B784 and #84A7B7. The name comes from Opéra Mauve (French (Mauve), Italian (Opera)).
- HEX: #B784A7
- RGB: 183, 132, 167
- HSL: 318.8°, 26.2%, 61.8%
- Style: Muted, Warm
- Use case: Text, Border, Print
- Complementary color: #84B794
- Triadic colors: #A7B784, #84A7B7
- The name comes from Opéra Mauve (French (Mauve), Italian (Opera)).
Live Components
Color Palettes
Opera Mauve #B784A7 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
Opera Mauve #B784A7 pairs with #84B794 as its complementary color, and #A7B784 and #84A7B7 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 mauve gained immense popularity in the mid-19th century after William Henry Perkin accidentally discovered the synthetic dye mauveine in 1856. This was the first synthetic organic chemical dye and revolutionized the textile industry, making purple accessible to all classes. The name 'mauve' comes from the French word for the mallow flower, which has a pale purple hue. The addition of 'Opera' to 'Mauve' suggests a more dramatic, perhaps richer or more vibrant, interpretation of the basic mauve color, possibly referencing the luxurious and theatrical associations of opera houses and costumes. It's a descriptive name that aims to evoke a particular mood or intensity within the mauve spectrum.
First Recorded Use
The color 'mauve' itself became popular after the discovery of mauveine dye in 1856. Specific named shades like 'Opera Mauve' likely emerged as color naming conventions became more sophisticated, particularly in fashion, cosmetics, and art supplies, during the 20th century.
Cultural Associations
Mauve, in general, has associations with femininity, nostalgia, and a certain delicate elegance. Its initial popularity in the Victorian era links it to that period's aesthetics. The 'Opera' prefix adds a layer of sophistication, drama, and perhaps a touch of vintage glamour, reminiscent of grand theatrical performances and the opulent fashion often seen in such settings. It might suggest a color that is both refined and captivating.
Code Snippets
/* Background */
.element {
background-color: #B784A7;
}
/* Text */
.element {
color: #B784A7;
}
/* Border */
.element {
border: 1px solid #B784A7;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B784A7,
#84B794
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B784A7,
#84B794
);
}
// SCSS variable
$opera-mauve: #B784A7;
// With RGB channels (useful for rgba() usage)
$opera-mauve-r: 183;
$opera-mauve-g: 132;
$opera-mauve-b: 167;
// Usage
.element {
background-color: $opera-mauve;
color: rgba($opera-mauve-r, $opera-mauve-g, $opera-mauve-b, 0.8);
}