Deer

HEX: #BA8759 | Modern Palette

On White
3.14:1
FAIL
On Black
6.70:1
PASS

Color Specifications

HEX
#BA8759
RGB
186, 135, 89
HSL
28°, 52% ,72%
CMYK
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

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

Color Characteristics

Mood
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #989857
Protanopia #8E8E59
Tritanopia #BD8282
Achromatopsia #919191

Frequently Asked Questions

Deer (#BA8759) is a color with RGB(186, 135, 89) and HSL(28.45°, 52.15%, 72.94%).

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

#BA8759 is suitable for Text, Button, Logo and works well with Warm styles.

The name Deer is linked to *deuzą from Proto-Germanic, meaning animal, beast.

Name, History & Etymology

Origin Word *deuzą
Meaning animal, beast
Language Proto-Germanic
First Recorded Use Old English

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.

Similar Named Colors

Light Taupe #B38B6D ΔE 4.79
Brown Yellow #CC9966 ΔE 5.73
Peru #CD853F ΔE 5.93
French Beige #A67B5B ΔE 6.08

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