Mauvelous
HEX: #EF98AA | Modern Palette
Color Specifications
#EF98AA
239, 152, 170
347°, 73% ,76%
0, 36, 29, 6
About Mauvelous
Mauvelous (#EF98AA) is a color with RGB(239, 152, 170) and HSL(347.6°, 73.1%, 76.7%). It is commonly associated with Playful, Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #98EFDD, which creates strong contrast. Its triadic palette includes #AAEF98 and #98AAEF. The name comes from Mauve (English).
- HEX: #EF98AA
- RGB: 239, 152, 170
- HSL: 347.6°, 73.1%, 76.7%
- Mood: Playful, Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #98EFDD
- Triadic colors: #AAEF98, #98AAEF
- The name comes from Mauve (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 #EF98AA from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color mauve itself has a fascinating history, becoming incredibly popular after William Henry Perkin accidentally discovered the synthetic dye mauveine in 1856. This dye revolutionized fashion and made purple accessible. The word 'mauve' comes from the French word for mallow flower, which has a similar pale purple hue. 'Mauvelous' is a more recent, informal linguistic creation, playing on the sound and meaning of 'marvelous' to describe something exceptionally mauve or, by extension, something delightful and charming, often with a slightly old-fashioned or whimsical connotation due to the color's historical popularity.
First Recorded Use
The term 'mauvelous' is a portmanteau of 'mauve' and 'marvelous'. While 'mauve' as a color name gained prominence in the mid-19th century (specifically 1859 with the discovery of mauveine dye), the playful adjective 'mauvelous' likely emerged later as a whimsical descriptor, possibly in the late 19th or early 20th century, though precise first use is hard to pinpoint. It's an informal, often humorous, coinage.
Cultural Associations
Mauve was a highly fashionable color in the Victorian era, particularly after its synthetic production. It symbolized luxury and modernity at the time. The term 'mauvelous' carries a lighthearted, often nostalgic or campy tone. It's not a standard dictionary word but is widely understood as a playful compliment, often used in contexts related to fashion, aesthetics, or anything deemed charmingly purple-ish or delightful. It evokes a sense of whimsical appreciation.
Code Snippets
/* Background */
.element {
background-color: #EF98AA;
}
/* Text */
.element {
color: #EF98AA;
}
/* Border */
.element {
border: 1px solid #EF98AA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EF98AA,
#98EFDD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EF98AA,
#98EFDD
);
}
// SCSS variable
$mauvelous: #EF98AA;
// With RGB channels (useful for rgba() usage)
$mauvelous-r: 239;
$mauvelous-g: 152;
$mauvelous-b: 170;
// Usage
.element {
background-color: $mauvelous;
color: rgba($mauvelous-r, $mauvelous-g, $mauvelous-b, 0.8);
}