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
Dark Brown #654321 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dark Brown #654321 pairs with #214365 as its complementary color, and #216543 and #432165 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}