Mauve Taupe
HEX: #915F6D | Modern Palette
Color Specifications
#915F6D
145, 95, 109
343°, 34% ,56%
0, 34.48, 24.83, 43.14
About Mauve Taupe
Mauve Taupe (#915F6D) is a color with RGB(145, 95, 109) and HSL(343.2°, 34.48%, 56.86%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #5F9183, which creates strong contrast. Its triadic palette includes #6D915F and #5F6D91. The name comes from Mauve (from French 'mauve' meaning mallow flower) + Taupe (from French 'taupe' meaning mole) (English (from French and Greek)).
- HEX: #915F6D
- RGB: 145, 95, 109
- HSL: 343.2°, 34.48%, 56.86%
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #5F9183
- Triadic colors: #6D915F, #5F6D91
- The name comes from Mauve (from French 'mauve' meaning mallow flower) + Taupe (from French 'taupe' meaning mole) (English (from French and Greek)).
Live Components
Color Palettes
Mauve Taupe #915F6D 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 Taupe #915F6D pairs with #5F9183 as its complementary color, and #6D915F and #5F6D91 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Mauve itself has a fascinating history, being one of the first synthetic organic dyes discovered by William Henry Perkin in 1856. This discovery revolutionized the textile industry and made the color widely accessible. Taupe, on the other hand, refers to the natural, earthy brown-grey color of a mole. The combination 'Mauve Taupe' suggests a blending of these two distinct color families: the purplish-pink undertones of mauve with the muted, earthy grey-brown of taupe. This creates a sophisticated, often understated, and somewhat ambiguous shade that can appear more purple, more brown, or more grey depending on the lighting and surrounding colors. Its rise in popularity aligns with periods favoring more complex, less primary color palettes.
First Recorded Use
The individual terms 'mauve' and 'taupe' were used earlier (mauve from mid-19th century, taupe from early 19th century). The compound 'Mauve Taupe' as a specific color name likely emerged as color naming became more nuanced, particularly in fashion and interior design, around the turn of the 20th century.
Cultural Associations
Mauve Taupe is often associated with sophistication, elegance, and a certain understated luxury. It's a versatile neutral that can be seen as warm or cool. It has been popular in fashion, cosmetics (especially eyeshadows and lipsticks), and interior design for creating serene and refined environments. Its ambiguity allows it to complement a wide range of other colors. It avoids the starkness of pure grey or the overt warmth of pure brown, offering a more nuanced and 'grown-up' alternative.
Code Snippets
/* Background */
.element {
background-color: #915F6D;
}
/* Text */
.element {
color: #915F6D;
}
/* Border */
.element {
border: 1px solid #915F6D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#915F6D,
#6BB7A2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#915F6D,
#6BB7A2
);
}
// SCSS variable
$mauve-taupe: #915F6D;
// With RGB channels (useful for rgba() usage)
$mauve-taupe-r: 145;
$mauve-taupe-g: 95;
$mauve-taupe-b: 109;
// Usage
.element {
background-color: $mauve-taupe;
color: rgba($mauve-taupe-r, $mauve-taupe-g, $mauve-taupe-b, 0.8);
}