Saddle Brown

HEX: #8B4513 | Modern Palette

On White
7.10:1
PASS
On Black
2.96:1
FAIL

Color Specifications

HEX
#8B4513
RGB
139, 69, 19
HSL
25°, 86% ,54%
CMYK
0, 50.36, 86.33, 45.49

About Saddle Brown

Saddle Brown (#8B4513) is a color with RGB(139, 69, 19) and HSL(25°, 86.33%, 54.51%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #13598B, which creates strong contrast. Its triadic palette includes #138B45 and #45138B. The name comes from Saddle Brown (English).

  • HEX: #8B4513
  • RGB: 139, 69, 19
  • HSL: 25°, 86.33%, 54.51%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #13598B
  • Triadic colors: #138B45, #45138B
  • The name comes from Saddle Brown (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 #8B4513 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #606007
Protanopia #505015
Tritanopia #8D4141
Achromatopsia #585858

Frequently Asked Questions

Saddle Brown (#8B4513) is a color with RGB(139, 69, 19) and HSL(25°, 86.33%, 54.51%).

#8B4513 pairs strongly with #13598B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8B4513 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#8B4513 is commonly associated with Energetic, Bold.

The name Saddle Brown is linked to Saddle Brown from English, meaning A brown color resembling the leather used for horse saddles..

Name, History & Etymology

Origin Word Saddle Brown
Meaning A brown color resembling the leather used for horse saddles.
Language English
First Recorded Use Late 19th Century

History

The color 'Saddle Brown' is directly inspired by the natural and dyed leather used for horse saddles. Saddle leather, often made from cowhide, is typically tanned and sometimes dyed to achieve various shades of brown. The specific shade associated with 'Saddle Brown' (like #8b4513) tends to be a medium to dark reddish-brown, reflecting the rich, warm tones often found in well-maintained leather saddles. Its popularity as a named color grew as industries began to categorize and market specific shades, moving beyond generic 'brown' to more descriptive and evocative names. It became a common color in fashion, particularly for shoes, belts, and bags, as well as in home furnishings and automotive interiors, due to its association with quality, durability, and a classic aesthetic.

First Recorded Use

The specific term 'Saddle Brown' as a named color gained prominence in the late 19th and early 20th centuries, particularly with the standardization of color names in fashion, interior design, and art supplies. The concept of a 'saddle color' would have existed much earlier.

Cultural Associations

Culturally, 'Saddle Brown' evokes images of equestrianism, the American West, craftsmanship, and tradition. It is often associated with ruggedness, reliability, and a timeless, classic style. In fashion, it's considered a versatile neutral, pairing well with a wide range of other colors. It conveys a sense of warmth, earthiness, and understated sophistication. Its connection to leather goods also links it to luxury and quality craftsmanship.

Similar Named Colors

Russet #80461B ΔE 2.90
Brown (traditional) #964B00 ΔE 4.38
Sepia #704214 ΔE 6.89

Code Snippets

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

/* Text */
.element {
    color: #8B4513;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #8B4513,
        #279CEF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8B4513,
        #279CEF
    );
}

// SCSS variable
$saddle-brown: #8B4513;

// With RGB channels (useful for rgba() usage)
$saddle-brown-r: 139;
$saddle-brown-g: 69;
$saddle-brown-b: 19;

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