Windsor Tan
HEX: #A75502 | Modern Palette
Color Specifications
#A75502
167, 85, 2
30°, 98% ,65%
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
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 #A75502 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}