Dark Chestnut
HEX: #986960 | Modern Palette
Color Specifications
#986960
152, 105, 96
9°, 36% ,59%
0, 30.92, 36.84, 40.39
About Dark Chestnut
Dark Chestnut (#986960) is a color with RGB(152, 105, 96) and HSL(9.64°, 36.84%, 59.61%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #608F98, which creates strong contrast. Its triadic palette includes #609869 and #696098.
- HEX: #986960
- RGB: 152, 105, 96
- HSL: 9.64°, 36.84%, 59.61%
- Mood: Romantic
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #608F98
- Triadic colors: #609869, #696098
Live Components
Color Palettes
Dark Chestnut #986960 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 Chestnut #986960 pairs with #608F98 as its complementary color, and #609869 and #696098 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #986960;
}
/* Text */
.element {
color: #986960;
}
/* Border */
.element {
border: 1px solid #986960;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#986960,
#72B2BE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#986960,
#72B2BE
);
}
// SCSS variable
$dark-chestnut: #986960;
// With RGB channels (useful for rgba() usage)
$dark-chestnut-r: 152;
$dark-chestnut-g: 105;
$dark-chestnut-b: 96;
// Usage
.element {
background-color: $dark-chestnut;
color: rgba($dark-chestnut-r, $dark-chestnut-g, $dark-chestnut-b, 0.8);
}