Rose Taupe

HEX: #905D5D | Modern Palette

On White
5.37:1
PASS
On Black
3.91:1
FAIL

Color Specifications

HEX
#905D5D
RGB
144, 93, 93
HSL
0°, 35% ,56%
CMYK
0, 35.42, 35.42, 43.53

About Rose Taupe

Rose Taupe (#905D5D) is a color with RGB(144, 93, 93) and HSL(0°, 35.42%, 56.47%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #5D9090, which creates strong contrast. Its triadic palette includes #5D905D and #5D5D90. The name comes from Rose Taupe (English (from French)).

  • HEX: #905D5D
  • RGB: 144, 93, 93
  • HSL: 0°, 35.42%, 56.47%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #5D9090
  • Triadic colors: #5D905D, #5D5D90
  • The name comes from Rose Taupe (English (from French)).

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

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #6F6F5B
Protanopia #64645D
Tritanopia #905D5D
Achromatopsia #6A6A6A

Frequently Asked Questions

Rose Taupe (#905D5D) is a color with RGB(144, 93, 93) and HSL(0°, 35.42%, 56.47%).

#905D5D pairs strongly with #5D9090 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#905D5D is suitable for Text, Logo, Print and works well with Warm styles.

#905D5D is commonly associated with Romantic.

The name Rose Taupe is linked to Rose Taupe from English (from French), meaning Rose (flower) + Taupe (mole).

Name, History & Etymology

Origin Word Rose Taupe
Meaning Rose (flower) + Taupe (mole)
Language English (from French)
First Recorded Use Early 20th Century

History

The color name 'taupe' itself comes from the French word for 'mole' (Talpa europaea), referring to the average color of the animal's fur. 'Rose taupe' emerged as a more specific descriptor, combining the brownish-grey base of taupe with a distinct pinkish or reddish undertone, reminiscent of a faded rose petal or a dusty rose hue. It gained popularity in fashion and interior design during the Art Deco era and has seen periodic resurgences.

First Recorded Use

Circa 1920s

Cultural Associations

Rose taupe is often associated with vintage aesthetics, understated elegance, and a sense of warmth without being overtly bright. It can evoke feelings of nostalgia, sophistication, and comfort. It's a versatile color that can be seen as both feminine and neutral, depending on its application and accompanying colors. It has been used in various fashion collections, home decor trends, and cosmetic palettes.

Similar Named Colors

Copper Rose #996666 ΔE 3.45
Dark Chestnut #986960 ΔE 5.63
Deep Taupe #7E5E60 ΔE 5.73
Mauve Taupe #915F6D ΔE 5.81

Code Snippets

/* Background */
.element {
    background-color: #905D5D;
}

/* Text */
.element {
    color: #905D5D;
}

/* Border */
.element {
    border: 1px solid #905D5D;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #905D5D,
        #69B7B7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #905D5D,
        #69B7B7
    );
}

// SCSS variable
$rose-taupe: #905D5D;

// With RGB channels (useful for rgba() usage)
$rose-taupe-r: 144;
$rose-taupe-g: 93;
$rose-taupe-b: 93;

// Usage
.element {
    background-color: $rose-taupe;
    color: rgba($rose-taupe-r, $rose-taupe-g, $rose-taupe-b, 0.8);
}