Pale Taupe
HEX: #BC987E | Modern Palette
Color Specifications
#BC987E
188, 152, 126
25°, 31% ,61%
0, 19, 33, 26
About Pale Taupe
Pale Taupe (#BC987E) is a color with RGB(188, 152, 126) and HSL(25.2°, 31.6%, 61.6%). It is commonly associated with Earthy moods. In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #7EA2BC, which creates strong contrast. Its triadic palette includes #7EBC98 and #987EBC. The name comes from taupe (French).
- HEX: #BC987E
- RGB: 188, 152, 126
- HSL: 25.2°, 31.6%, 61.6%
- Mood: Earthy
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #7EA2BC
- Triadic colors: #7EBC98, #987EBC
- The name comes from taupe (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 #BC987E from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'taupe' comes directly from the French word for 'mole'. The color was adopted into English to describe a specific shade of brownish-grey, reminiscent of the animal's fur. It became particularly fashionable in the mid-19th century, often associated with understated elegance and natural tones. 'Pale Taupe' specifically refers to a lighter, less saturated version of this classic color, often leaning more towards grey or a very light brown with grey undertones. Its hex code #bc987e confirms this lighter, slightly warmer (more brown than grey) interpretation.
First Recorded Use
The color 'taupe' itself gained popularity as a fashion and interior design term in the 19th century, specifically referring to the color of the French mole's fur. The modifier 'pale' would have been added descriptively as needed.
Cultural Associations
Taupe is often seen as a sophisticated, neutral, and versatile color. It's popular in fashion for its ability to pair well with many other colors, and in interior design for creating calm, elegant, and timeless spaces. 'Pale Taupe' maintains these associations but offers a softer, airier feel than a darker taupe. It's less stark than pure grey and less overtly warm than beige, occupying a popular middle ground.
Code Snippets
/* Background */
.element {
background-color: #BC987E;
}
/* Text */
.element {
color: #BC987E;
}
/* Border */
.element {
border: 1px solid #BC987E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BC987E,
#7EA2BC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BC987E,
#7EA2BC
);
}
// SCSS variable
$pale-taupe: #BC987E;
// With RGB channels (useful for rgba() usage)
$pale-taupe-r: 188;
$pale-taupe-g: 152;
$pale-taupe-b: 126;
// Usage
.element {
background-color: $pale-taupe;
color: rgba($pale-taupe-r, $pale-taupe-g, $pale-taupe-b, 0.8);
}