Mauve
HEX: #E0B0FF | Modern Palette
Color Specifications
#E0B0FF
224, 176, 255
276°, 100% ,84%
12, 31, 0, 0
About Mauve
Mauve (#E0B0FF) is a color with RGB(224, 176, 255) and HSL(276.5°, 100%, 84.5%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #CFFFB0, which creates strong contrast. Its triadic palette includes #FFE0B0 and #B0FFE0. The name comes from mauve (French).
- HEX: #E0B0FF
- RGB: 224, 176, 255
- HSL: 276.5°, 100%, 84.5%
- Mood: Playful
- Style: Neon
- Use case: Text, Button, Background
- Complementary color: #CFFFB0
- Triadic colors: #FFE0B0, #B0FFE0
- The name comes from mauve (French).
Live Components
Color Palettes
Mauve #E0B0FF 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
Mauve #E0B0FF pairs with #CFFFB0 as its complementary color, and #FFE0B0 and #B0FFE0 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#C0C0FE
#B6B6FF
#D6BCBC
#C2C2C2
Frequently Asked Questions
Name, History & Etymology
History
The color 'mauve' gained immense popularity after William Henry Perkin, a British chemist, accidentally discovered the first synthetic organic dye in 1856 while attempting to synthesize quinine. He named the dye 'mauveine' (or aniline purple). The color quickly became fashionable, especially in Victorian England, and was worn by Queen Victoria herself. Its popularity led to a boom in the chemical dye industry. The term 'mauve' itself comes from the French word for the mallow flower, which has a similar pale purple hue.
First Recorded Use
1859 (as a color name in English)
Cultural Associations
Mauve is strongly associated with the Victorian era and its fashion. It symbolized innovation and modernity due to its synthetic origin. It can evoke feelings of nostalgia, elegance, and a certain subdued femininity. In modern contexts, it's often seen as a soft, sophisticated, or even slightly melancholic shade of purple.
Code Snippets
/* Background */
.element {
background-color: #E0B0FF;
}
/* Text */
.element {
color: #E0B0FF;
}
/* Border */
.element {
border: 1px solid #E0B0FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E0B0FF,
#CFFFB0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E0B0FF,
#CFFFB0
);
}
// SCSS variable
$mauve: #E0B0FF;
// With RGB channels (useful for rgba() usage)
$mauve-r: 224;
$mauve-g: 176;
$mauve-b: 255;
// Usage
.element {
background-color: $mauve;
color: rgba($mauve-r, $mauve-g, $mauve-b, 0.8);
}