Deep Chestnut
HEX: #B94E48 | Modern Palette
Color Specifications
#B94E48
185, 78, 72
3°, 44% ,50%
0, 58, 61, 27
About Deep Chestnut
Deep Chestnut (#B94E48) is a color with RGB(185, 78, 72) and HSL(3.2°, 44.7%, 50.4%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #48B3B9, which creates strong contrast. Its triadic palette includes #48B94E and #4E48B9. The name comes from Deep Chestnut (English).
- HEX: #B94E48
- RGB: 185, 78, 72
- HSL: 3.2°, 44.7%, 50.4%
- Mood: Romantic
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #48B3B9
- Triadic colors: #48B94E, #4E48B9
- The name comes from Deep Chestnut (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 #B94E48 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'chestnut' itself comes from Old French 'chastaigne' and Latin 'castanea', referring to the tree and its nut. As a color, it has been used to describe reddish-browns for a long time, drawing a direct comparison to the rich, glossy brown of a mature chestnut. The addition of 'deep' serves to differentiate it from lighter or more golden chestnut shades, emphasizing its darker, more intense red-brown qualities. It gained prominence as a descriptive color in fashion, interior design, and art during periods that favored earthy and natural tones.
First Recorded Use
While 'chestnut' as a color has existed for centuries, the specific modifier 'deep' to denote a darker shade likely became more common with the standardization of color names in industries like paint, fashion, and dyes. Exact first use is difficult to pinpoint without specific historical color charts or literature.
Cultural Associations
Chestnut colors are often associated with warmth, nature, autumn, and rustic aesthetics. In some cultures, the chestnut tree and its fruit symbolize strength, longevity, and sustenance. The 'deep' aspect adds a sense of richness, sophistication, and groundedness to these associations. It's a color frequently seen in traditional wood finishes, leather goods, and autumnal clothing palettes.
Code Snippets
/* Background */
.element {
background-color: #B94E48;
}
/* Text */
.element {
color: #B94E48;
}
/* Border */
.element {
border: 1px solid #B94E48;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B94E48,
#48B3B9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B94E48,
#48B3B9
);
}
// SCSS variable
$deep-chestnut: #B94E48;
// With RGB channels (useful for rgba() usage)
$deep-chestnut-r: 185;
$deep-chestnut-g: 78;
$deep-chestnut-b: 72;
// Usage
.element {
background-color: $deep-chestnut;
color: rgba($deep-chestnut-r, $deep-chestnut-g, $deep-chestnut-b, 0.8);
}