Seal Brown
HEX: #321414 | Modern Palette
Color Specifications
#321414
50, 20, 20
0°, 60% ,19%
0, 60, 60, 80.39
About Seal Brown
Seal Brown (#321414) is a color with RGB(50, 20, 20) and HSL(0°, 60%, 19.61%). It is commonly associated with Bold moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #143232, which creates strong contrast. Its triadic palette includes #143214 and #141432. The name comes from Seal Brown (English).
- HEX: #321414
- RGB: 50, 20, 20
- HSL: 0°, 60%, 19.61%
- Mood: Bold
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #143232
- Triadic colors: #143214, #141432
- 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 #321414 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#202013
#191914
#321414
#1D1D1D
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 precise and evocative names for their color palettes. The color itself, a very dark, rich brown, directly references the glossy, deep brown fur of certain species of seals, particularly when wet or viewed in certain lights. It became a common color in men's and women's clothing, leather goods, and home furnishings.
First Recorded Use
1880s
Cultural Associations
Seal brown has often been associated with sophistication, warmth, and practicality. It's a classic, neutral color that has maintained its presence in fashion and design due to its versatility and ability to pair well with a wide range of other colors. It evokes a sense of natural elegance and understated luxury.
Code Snippets
/* Background */
.element {
background-color: #321414;
}
/* Text */
.element {
color: #321414;
}
/* Border */
.element {
border: 1px solid #321414;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#321414,
#145050
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#321414,
#145050
);
}
// SCSS variable
$seal-brown: #321414;
// With RGB channels (useful for rgba() usage)
$seal-brown-r: 50;
$seal-brown-g: 20;
$seal-brown-b: 20;
// Usage
.element {
background-color: $seal-brown;
color: rgba($seal-brown-r, $seal-brown-g, $seal-brown-b, 0.8);
}