Dark Tan
HEX: #918151 | Modern Palette
Color Specifications
#918151
145, 129, 81
45°, 44% ,56%
0, 11.03, 44.14, 43.14
About Dark Tan
Dark Tan (#918151) is a color with RGB(145, 129, 81) and HSL(45°, 44.14%, 56.86%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #516191, which creates strong contrast. Its triadic palette includes #519181 and #815191. The name comes from Dark Tan (English).
- HEX: #918151
- RGB: 145, 129, 81
- HSL: 45°, 44.14%, 56.86%
- Mood: Earthy
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #516191
- Triadic colors: #519181, #815191
- The name comes from Dark 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 #918151 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'tan' as a desirable skin color is relatively modern. Historically, pale skin was often a sign of wealth and leisure, as it indicated one did not have to work outdoors. The shift began in the early 20th century, partly influenced by figures like Coco Chanel, who popularized sunbathing. 'Dark tan' specifically refers to a more pronounced level of this sun-induced pigmentation. The term is descriptive and has been used consistently to describe this color since its popularization.
First Recorded Use
The specific phrase 'dark tan' likely became common as tanning became a more widespread beauty ideal, particularly from the 1920s onwards. Before this, 'tan' often carried connotations of labor or outdoor work rather than leisure.
Cultural Associations
In many Western cultures, a 'dark tan' has been associated with health, outdoor activity, and leisure, often implying vacations or time spent in sunny climates. It can be seen as a status symbol. However, there are also growing health concerns regarding excessive sun exposure and the risks of skin cancer, leading to a rise in self-tanning products. The desirability of a 'dark tan' can also vary significantly across different cultures, with many cultures still valuing lighter skin tones.
Code Snippets
/* Background */
.element {
background-color: #918151;
}
/* Text */
.element {
color: #918151;
}
/* Border */
.element {
border: 1px solid #918151;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#918151,
#6079C2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#918151,
#6079C2
);
}
// SCSS variable
$dark-tan: #918151;
// With RGB channels (useful for rgba() usage)
$dark-tan-r: 145;
$dark-tan-g: 129;
$dark-tan-b: 81;
// Usage
.element {
background-color: $dark-tan;
color: rgba($dark-tan-r, $dark-tan-g, $dark-tan-b, 0.8);
}