Dark Brown
HEX: #654321 | Modern Palette
Color Specifications
#654321
101, 67, 33
30°, 67% ,39%
0, 33.66, 67.33, 60.39
About Dark Brown
Dark Brown (#654321) is a color with RGB(101, 67, 33) and HSL(30°, 67.33%, 39.61%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #214365, which creates strong contrast. Its triadic palette includes #216543 and #432165. The name comes from Dark Brown (English).
- HEX: #654321
- RGB: 101, 67, 33
- HSL: 30°, 67.33%, 39.61%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #214365
- Triadic colors: #216543, #432165
- The name comes from Dark 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 #654321 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'dark' comes from Old English 'deorc', meaning 'dark, obscure, gloomy'. 'Brown' comes from Old English 'brun', meaning 'dark, dusky'. Both words have Germanic roots. The combination 'dark brown' is a descriptive compound, where 'dark' modifies 'brown' to specify a particular intensity or shade. Historically, 'brown' itself often encompassed a wide range of shades, and adding 'dark' helped to differentiate it from lighter or more reddish browns. The specific hexadecimal code #654321 is a modern digital representation, not part of the historical linguistic development.
First Recorded Use
While 'dark' and 'brown' have ancient origins, their specific combination 'dark brown' as a common descriptor for a color shade likely solidified in usage during the 16th-18th centuries as color terminology became more precise. Formal codification as a distinct color name would be later.
Cultural Associations
Dark brown is a very common color in nature, associated with earth, wood, soil, and animal fur. It often evokes feelings of stability, warmth, reliability, and naturalness. In fashion, it's considered a classic, versatile, and sophisticated neutral. In art, it's used for shadows, grounding elements, and naturalistic depictions. Culturally, it's less symbolically charged than primary colors but carries connotations of being grounded and unpretentious.
Code Snippets
/* Background */
.element {
background-color: #654321;
}
/* Text */
.element {
color: #654321;
}
/* Border */
.element {
border: 1px solid #654321;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#654321,
#2165A9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#654321,
#2165A9
);
}
// SCSS variable
$dark-brown: #654321;
// With RGB channels (useful for rgba() usage)
$dark-brown-r: 101;
$dark-brown-g: 67;
$dark-brown-b: 33;
// Usage
.element {
background-color: $dark-brown;
color: rgba($dark-brown-r, $dark-brown-g, $dark-brown-b, 0.8);
}