Taupe

HEX: #483C32 | Modern Palette

On White
10.67:1
PASS
On Black
1.97:1
FAIL

Color Specifications

HEX
#483C32
RGB
72, 60, 50
HSL
27°, 30% ,28%
CMYK
0, 16.67, 30.56, 71.76

About Taupe

Taupe (#483C32) is a color with RGB(72, 60, 50) and HSL(27.27°, 30.56%, 28.24%). It is commonly associated with Earthy moods. In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #323E48, which creates strong contrast. Its triadic palette includes #32483C and #3C3248. The name comes from taupe (French).

  • HEX: #483C32
  • RGB: 72, 60, 50
  • HSL: 27.27°, 30.56%, 28.24%
  • Mood: Earthy
  • Style: Muted, Warm
  • Use case: Text, Print
  • Complementary color: #323E48
  • Triadic colors: #32483C, #3C3248
  • 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 #483C32 from deepest shade to lightest tint.

Color Characteristics

Mood
Earthy
Style
Muted Warm
Use case
Text Print

Accessibility Simulation

Deuteranopia #404032
Protanopia #3D3D32
Tritanopia #493B3B
Achromatopsia #3E3E3E

Frequently Asked Questions

Taupe (#483C32) is a color with RGB(72, 60, 50) and HSL(27.27°, 30.56%, 28.24%).

#483C32 pairs strongly with #323E48 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#483C32 is commonly associated with Earthy.

The name Taupe is linked to taupe from French, meaning The French word 'taupe' directly translates to 'mole,' referring to the animal's fur color..

Name, History & Etymology

Origin Word taupe
Meaning The French word 'taupe' directly translates to 'mole,' referring to the animal's fur color.
Language French
First Recorded Use 19th Century

History

The color gained popularity in fashion and interior design during the mid-19th century, particularly in France. Its subtle, earthy tone made it a versatile choice for various applications. Taupe has maintained its appeal through different eras, often associated with sophistication and neutrality. Its precise shade can vary significantly, ranging from grayish-brown to brownish-gray.

First Recorded Use

The color name 'taupe' first appeared in English around the 1850s, directly borrowed from French. Early references describe a brownish-gray hue resembling the fur of a mole.

Cultural Associations

Taupe is often considered a timeless and elegant neutral, frequently used in high-end fashion and home decor. It conveys a sense of understated luxury and versatility, easily complementing a wide range of other colors. Its association with natural elements contributes to its enduring appeal in design.

Similar Named Colors

Café Noir #4B3621 ΔE 6.05
Bistre #3D2B1F ΔE 6.17
Dark Liver (horses) #543D37 ΔE 6.68
Old Burgundy #43302E ΔE 7.52

Code Snippets

/* Background */
.element {
    background-color: #483C32;
}

/* Text */
.element {
    color: #483C32;
}

/* Border */
.element {
    border: 1px solid #483C32;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #483C32,
        #324A5E
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #483C32,
        #324A5E
    );
}

// SCSS variable
$taupe: #483C32;

// With RGB channels (useful for rgba() usage)
$taupe-r: 72;
$taupe-g: 60;
$taupe-b: 50;

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