Seal Brown
HEX: #59260B | Modern Palette
Color Specifications
#59260B
89, 38, 11
20°, 87% ,34%
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
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 #59260B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}