Pale Taupe

HEX: #BC987E | Modern Palette

On White
2.65:1
FAIL
On Black
7.93:1
PASS

Color Specifications

HEX
#BC987E
RGB
188, 152, 126
HSL
25°, 31% ,61%
CMYK
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

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

Color Characteristics

Mood
Earthy
Style
Muted Warm
Use case
Text Print

Accessibility Simulation

Deuteranopia #A4A47D
Protanopia #9C9C7E
Tritanopia #BE9595
Achromatopsia #9F9F9F

Frequently Asked Questions

Pale Taupe (#BC987E) is a color with RGB(188, 152, 126) and HSL(25.2°, 31.6%, 61.6%).

#BC987E pairs strongly with #7EA2BC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#BC987E is commonly associated with Earthy.

The name Pale Taupe is linked to taupe from French, meaning mole.

Name, History & Etymology

Origin Word taupe
Meaning mole
Language French
First Recorded Use 19th Century

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.

Similar Named Colors

Light Taupe #B38B6D ΔE 4.21
Antique Brass #CD9575 ΔE 5.31
Camel #C19A6B ΔE 6.52
Brown Yellow #CC9966 ΔE 7.26

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