Chestnut
HEX: #954535 | Modern Palette
Color Specifications
#954535
149, 69, 53
10°, 64% ,58%
0, 53.69, 64.43, 41.57
About Chestnut
Chestnut (#954535) is a color with RGB(149, 69, 53) and HSL(10°, 64.43%, 58.43%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #358595, which creates strong contrast. Its triadic palette includes #359545 and #453595. The name comes from Chestnut (English).
- HEX: #954535
- RGB: 149, 69, 53
- HSL: 10°, 64.43%, 58.43%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #358595
- Triadic colors: #359545, #453595
- The name comes from Chestnut (English).
Live Components
Color Palettes
Chestnut #954535 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
Chestnut #954535 pairs with #358595 as its complementary color, and #359545 and #453595 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 'chestnut' has a long history in English, primarily referring to the tree and its fruit. Its figurative use to mean an old or stale joke is a relatively newer development, originating from a specific theatrical context in the 19th century. This particular usage quickly gained popularity and became a common idiom. The color 'chestnut' (a reddish-brown) also derives from the color of the nut.
First Recorded Use
c. 1380, from Old French 'chastaigne' (12c., Modern French 'châtaigne'), from Latin 'castanea' 'chestnut tree or nut,' from Greek 'kastaneia.' The Greek word is traditionally said to be from 'Kastana,' a town in Pontus, Asia Minor, famous for its chestnuts. However, it may also be a loan-word from a language of Asia Minor. 1840, from a play 'The Broken Sword' by William Dimond (1816), in which a character repeats the same story about a 'chestnut tree' so often that another character exclaims, 'Confound your chestnut tree! I am tired of hearing of your chestnut tree.'
Cultural Associations
Chestnuts have been a significant food source in many cultures, particularly in Europe, for millennia. They are often associated with autumn and winter holidays, especially roasted chestnuts. The 'chestnut' as an old joke is a widely understood idiom in English-speaking cultures, implying something that is predictable, unoriginal, or has been heard too many times.
Code Snippets
/* Background */
.element {
background-color: #954535;
}
/* Text */
.element {
color: #954535;
}
/* Border */
.element {
border: 1px solid #954535;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#954535,
#51C3D9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#954535,
#51C3D9
);
}
// SCSS variable
$chestnut: #954535;
// With RGB channels (useful for rgba() usage)
$chestnut-r: 149;
$chestnut-g: 69;
$chestnut-b: 53;
// Usage
.element {
background-color: $chestnut;
color: rgba($chestnut-r, $chestnut-g, $chestnut-b, 0.8);
}