Dark Tan

HEX: #918151 | Modern Palette

On White
3.84:1
FAIL
On Black
5.46:1
PASS

Color Specifications

HEX
#918151
RGB
145, 129, 81
HSL
45°, 44% ,56%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Dark Tan #918151 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

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

Dark Tan #918151 pairs with #516191 as its complementary color, and #519181 and #815191 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

DARK TAN
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

DARK TAN
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

DARK TAN
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

DARK TAN
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

DARK TAN
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

DARK TAN

Shades & Tints

The shade and tint range for Dark Tan #918151 moves from dark #100F09 tones through the base color to lighter #F6F4EF tones, making it useful for depth, hierarchy, and background variation.

DARK TAN

Color Characteristics

Mood
Earthy
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #868650
Protanopia #838351
Tritanopia #957C7C
Achromatopsia #828282

Frequently Asked Questions

Dark Tan (#918151) is a color with RGB(145, 129, 81) and HSL(45°, 44.14%, 56.86%).

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

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

#918151 is commonly associated with Earthy.

The name Dark Tan is linked to Dark Tan from English, meaning A deep shade of tan, often associated with sun exposure..

Name, History & Etymology

Origin Word Dark Tan
Meaning A deep shade of tan, often associated with sun exposure.
Language English
First Recorded Use Early 20th Century

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.

Similar Named Colors

Gold Fusion #85754E ΔE 5.05
Old Moss Green #867E36 ΔE 6.22
Metallic Sunburst #9C7C38 ΔE 6.35
Shadow #8A795D ΔE 6.59

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