Seal Brown

HEX: #59260B | Modern Palette

On White
12.30:1
PASS
On Black
1.71:1
FAIL

Color Specifications

HEX
#59260B
RGB
89, 38, 11
HSL
20°, 87% ,34%
CMYK
0, 57.3, 87.64, 65.1

About Seal Brown

Seal Brown (#59260B) is a color with RGB(89, 38, 11) and HSL(20.77°, 87.64%, 34.9%). It is commonly associated with Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0B3E59, which creates strong contrast. Its triadic palette includes #0B5926 and #260B59. The name comes from Seal Brown (English).

  • HEX: #59260B
  • RGB: 89, 38, 11
  • HSL: 20.77°, 87.64%, 34.9%
  • Mood: Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #0B3E59
  • Triadic colors: #0B5926, #260B59
  • The name comes from Seal 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 #59260B from deepest shade to lightest tint.

Color Characteristics

Mood
Bold
Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #3A3A05
Protanopia #2F2F0C
Tritanopia #5A2424
Achromatopsia #353535

Frequently Asked Questions

Seal Brown (#59260B) is a color with RGB(89, 38, 11) and HSL(20.77°, 87.64%, 34.9%).

#59260B pairs strongly with #0B3E59 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#59260B is commonly associated with Bold.

The name Seal Brown is linked to Seal Brown from English, meaning A dark brown color, specifically resembling the fur of a seal..

Name, History & Etymology

Origin Word Seal Brown
Meaning A dark brown color, specifically resembling the fur of a seal.
Language English
First Recorded Use Late 19th Century

History

The term 'seal brown' emerged as a color descriptor in the late 19th century, likely gaining popularity as fashion and textile industries sought more specific and evocative names for their color palettes. The color itself is a very dark, rich brown, often with a slight reddish or yellowish undertone, mimicking the natural coloration of various seal species' fur. It became a common color in men's and women's clothing, leather goods, and home furnishings due to its versatility and sophisticated appearance. Its use has persisted into modern times, though perhaps less frequently in common parlance than some other browns.

First Recorded Use

1890s

Cultural Associations

Seal brown is often associated with classic, traditional, and somewhat conservative aesthetics. It conveys a sense of warmth, stability, and earthiness. In fashion, it's considered a neutral color that pairs well with a wide range of other hues. It has been used in military uniforms (though less common than olive or true brown), academic regalia, and corporate branding to project reliability and professionalism. The association with seals also gives it a subtle connection to nature and wildlife.

Similar Named Colors

Liver (organ) #6C2E1F ΔE 6.31
French Puce #4E1609 ΔE 6.52
Caput Mortuum #592720 ΔE 7.64
Kenyan Copper #7C1C05 ΔE 8.83

Code Snippets

/* Background */
.element {
    background-color: #59260B;
}

/* Text */
.element {
    color: #59260B;
}

/* Border */
.element {
    border: 1px solid #59260B;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #59260B,
        #0B71A7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #59260B,
        #0B71A7
    );
}

// SCSS variable
$seal-brown: #59260B;

// With RGB channels (useful for rgba() usage)
$seal-brown-r: 89;
$seal-brown-g: 38;
$seal-brown-b: 11;

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