Tan
HEX: #D2B48C | Modern Palette
Color Specifications
#D2B48C
210, 180, 140
34°, 43% ,68%
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
Color Palettes
Tan #D2B48C is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Tan #D2B48C pairs with #8CAAD2 as its complementary color, and #8CD2B4 and #B48CD2 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}