Deer
HEX: #BA8759 | Modern Palette
Color Specifications
#BA8759
186, 135, 89
28°, 52% ,72%
0, 27.42, 52.15, 27.06
About Deer
Deer (#BA8759) is a color with RGB(186, 135, 89) and HSL(28.45°, 52.15%, 72.94%). In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #598CBA, which creates strong contrast. Its triadic palette includes #59BA87 and #8759BA. The name comes from *deuzą (Proto-Germanic).
- HEX: #BA8759
- RGB: 186, 135, 89
- HSL: 28.45°, 52.15%, 72.94%
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #598CBA
- Triadic colors: #59BA87, #8759BA
- The name comes from *deuzą (Proto-Germanic).
Live Components
Color Palettes
Deer #BA8759 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Deer #BA8759 pairs with #598CBA as its complementary color, and #59BA87 and #8759BA in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The word 'deer' has a fascinating semantic shift. In Old English, 'dēor' (pronounced roughly like 'day-or') referred to any wild animal, a meaning preserved in related Germanic languages (e.g., German 'Tier' means 'animal'). Over time, the meaning narrowed, first to four-legged animals, then specifically to game animals, and finally, by the Middle English period, it became almost exclusively associated with the ruminant mammals we now call deer. This narrowing is common for words that originally had a very broad meaning.
First Recorded Use
Before 900 AD
Cultural Associations
Deer have held significant cultural importance across many societies. They are often symbols of grace, speed, and wilderness. In many ancient cultures, deer were revered as sacred animals, associated with deities of the hunt, fertility, or the forest. Their antlers, shed and regrown annually, have symbolized renewal and regeneration. Deer hunting has been a crucial activity for sustenance and sport for millennia, influencing art, mythology, and social structures.
Code Snippets
/* Background */
.element {
background-color: #BA8759;
}
/* Text */
.element {
color: #BA8759;
}
/* Border */
.element {
border: 1px solid #BA8759;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BA8759,
#96BCDE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BA8759,
#96BCDE
);
}
// SCSS variable
$deer: #BA8759;
// With RGB channels (useful for rgba() usage)
$deer-r: 186;
$deer-g: 135;
$deer-b: 89;
// Usage
.element {
background-color: $deer;
color: rgba($deer-r, $deer-g, $deer-b, 0.8);
}