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
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 #986960 from deepest shade to lightest tint.
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);
}