Windsor Tan

HEX: #A75502 | Modern Palette

On White
5.33:1
PASS
On Black
3.94:1
FAIL

Color Specifications

HEX
#A75502
RGB
167, 85, 2
HSL
30°, 98% ,65%
CMYK
0, 49.1, 98.8, 34.51

About Windsor Tan

Windsor Tan (#A75502) is a color with RGB(167, 85, 2) and HSL(30.18°, 98.8%, 65.49%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #0254A7, which creates strong contrast. Its triadic palette includes #02A755 and #5502A7. The name comes from Windsor Tan (English).

  • HEX: #A75502
  • RGB: 167, 85, 2
  • HSL: 30.18°, 98.8%, 65.49%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #0254A7
  • Triadic colors: #02A755, #5502A7
  • The name comes from Windsor 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 #A75502 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #757500
Protanopia #626206
Tritanopia #A95050
Achromatopsia #6B6B6B

Frequently Asked Questions

Windsor Tan (#A75502) is a color with RGB(167, 85, 2) and HSL(30.18°, 98.8%, 65.49%).

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

#A75502 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#A75502 is commonly associated with Energetic, Bold.

The name Windsor Tan is linked to Windsor Tan from English, meaning A specific shade of tan color, often associated with leather goods or equestrian equipment..

Name, History & Etymology

Origin Word Windsor Tan
Meaning A specific shade of tan color, often associated with leather goods or equestrian equipment.
Language English
First Recorded Use 20th Century

History

The term 'tan' itself comes from the Old French 'tan' (oak bark), used in the tanning of leather. Over centuries, 'tan' evolved to describe the color of tanned leather. Specific named shades like 'Windsor Tan' emerged as manufacturers and designers sought to differentiate and market particular hues. The 'Windsor' addition suggests a refined, perhaps equestrian or traditional British aesthetic, often seen in leather goods, shoes, and accessories.

First Recorded Use

The exact first use is difficult to pinpoint, but the naming convention for specific color shades became more common in the 20th century, particularly with the rise of industrial dyes and standardized color systems. The 'Windsor' prefix likely evokes a sense of classic British elegance, possibly referencing Windsor Castle or the House of Windsor.

Cultural Associations

The color 'Windsor Tan' often carries connotations of classic style, durability, and understated luxury. It's frequently associated with high-quality leather products, such as equestrian saddles, fine shoes, briefcases, and watch straps. Its warmth and versatility make it a popular choice in fashion and interior design for items aiming for a timeless, sophisticated look. It can evoke images of British countryside estates or traditional craftsmanship.

Similar Named Colors

Brown (traditional) #964B00 ΔE 4.55
Light Brown #B5651D ΔE 5.73
Ginger #B06500 ΔE 6.28
Ruddy Brown #BB6528 ΔE 7.13

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #A75502,
        #50A6FE
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #A75502,
        #50A6FE
    );
}

// SCSS variable
$windsor-tan: #A75502;

// With RGB channels (useful for rgba() usage)
$windsor-tan-r: 167;
$windsor-tan-g: 85;
$windsor-tan-b: 2;

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