Rose Taupe
HEX: #905D5D | Modern Palette
Color Specifications
#905D5D
144, 93, 93
0°, 35% ,56%
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
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 #905D5D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}