Mauve Taupe

HEX: #915F6D | Modern Palette

On White
5.17:1
PASS
On Black
4.06:1
FAIL

Color Specifications

HEX
#915F6D
RGB
145, 95, 109
HSL
343°, 34% ,56%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #915F6D from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Muted Warm
Use case
Text Print

Accessibility Simulation

Deuteranopia #70706C
Protanopia #66666D
Tritanopia #906161
Achromatopsia #6D6D6D

Frequently Asked Questions

Mauve Taupe (#915F6D) is a color with RGB(145, 95, 109) and HSL(343.2°, 34.48%, 56.86%).

#915F6D pairs strongly with #5F9183 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#915F6D is suitable for Text, Print and works well with Muted, Warm styles.

The name Mauve Taupe is linked to Mauve (from French 'mauve' meaning mallow flower) + Taupe (from French 'taupe' meaning mole) from English (from French and Greek), meaning A color resembling the mallow flower combined with the color of a mole's fur..

Name, History & Etymology

Origin Word Mauve (from French 'mauve' meaning mallow flower) + Taupe (from French 'taupe' meaning mole)
Meaning A color resembling the mallow flower combined with the color of a mole's fur.
Language English (from French and Greek)
First Recorded Use Late 19th - Early 20th Century

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.

Similar Named Colors

Rose Taupe #905D5D ΔE 5.81
Copper Rose #996666 ΔE 6.13
Deep Puce #A95C68 ΔE 6.51
Deep Taupe #7E5E60 ΔE 7.05

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);
}