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
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 #BA8759 from deepest shade to lightest tint.
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);
}