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