Tan

HEX: #D2B48C | Modern Palette

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

Color Specifications

HEX
#D2B48C
RGB
210, 180, 140
HSL
34°, 43% ,68%
CMYK
0, 14, 33, 18

About Tan

Tan (#D2B48C) is a color with RGB(210, 180, 140) and HSL(34.3°, 43.8%, 68.6%). In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #8CAAD2, which creates strong contrast. Its triadic palette includes #8CD2B4 and #B48CD2. The name comes from Tan (English).

  • HEX: #D2B48C
  • RGB: 210, 180, 140
  • HSL: 34.3°, 43.8%, 68.6%
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #8CAAD2
  • Triadic colors: #8CD2B4, #B48CD2
  • The name comes from Tan (English).

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

Color Characteristics

Mood
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #BDBD8B
Protanopia #B8B88C
Tritanopia #D6B0B0
Achromatopsia #B9B9B9

Frequently Asked Questions

Tan (#D2B48C) is a color with RGB(210, 180, 140) and HSL(34.3°, 43.8%, 68.6%).

#D2B48C pairs strongly with #8CAAD2 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

The name Tan is linked to Tan from English, meaning A yellowish-brown color, originally referring to the color of tanned leather..

Name, History & Etymology

Origin Word Tan
Meaning A yellowish-brown color, originally referring to the color of tanned leather.
Language English
First Recorded Use Late 16th Century

History

The word 'tan' as a color name derives directly from the verb 'to tan,' which means to convert animal hide into leather by steeping it in a tannin solution. This process gives the leather a characteristic yellowish-brown color. The verb 'tan' itself comes from Old English 'tannian,' likely from Medieval Latin 'tannare,' which is of Germanic origin. The color name became widely used as the process of tanning leather was common and the resulting color was distinctive.

First Recorded Use

1590s

Cultural Associations

Tan is a very common color in nature, found in earth, sand, and various animal coats. It is often associated with natural, earthy tones, warmth, and neutrality. In fashion, tan is considered a classic neutral and is frequently used for outerwear (like trench coats), shoes, and accessories. It can evoke a sense of understated elegance or rugged utility depending on its application. The concept of a 'tan' (referring to skin darkening from sun exposure) also uses the same word, reflecting the similar color change.

Similar Named Colors

Burlywood #DEB887 ΔE 3.09
Light French Beige #C8AD7F ΔE 3.20
Khaki #C3B091 ΔE 4.32
Pale Gold #E6BE8A ΔE 4.58

Code Snippets

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

/* Text */
.element {
    color: #D2B48C;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #D2B48C,
        #8CAAD2
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #D2B48C,
        #8CAAD2
    );
}

// SCSS variable
$tan: #D2B48C;

// With RGB channels (useful for rgba() usage)
$tan-r: 210;
$tan-g: 180;
$tan-b: 140;

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