Pale Chestnut
HEX: #DDADAF | Modern Palette
Color Specifications
#DDADAF
221, 173, 175
357°, 41% ,77%
0, 22, 21, 13
About Pale Chestnut
Pale Chestnut (#DDADAF) is a color with RGB(221, 173, 175) and HSL(357.5°, 41.4%, 77.3%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Print. Its complementary color is #ADDDDB, which creates strong contrast. Its triadic palette includes #AFDDAD and #ADAFDD. The name comes from Pale Chestnut (English).
- HEX: #DDADAF
- RGB: 221, 173, 175
- HSL: 357.5°, 41.4%, 77.3%
- Mood: Romantic
- Style: Warm
- Use case: Text, Print
- Complementary color: #ADDDDB
- Triadic colors: #AFDDAD, #ADAFDD
- The name comes from Pale 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 #DDADAF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'chestnut' has been used to describe shades of reddish-brown for centuries, directly referencing the color of the nut from the chestnut tree. The addition of 'pale' serves as a modifier to indicate a lighter, less saturated version of this established color. This kind of descriptive compound color name became more common as color charts and standardized color systems developed, requiring more nuanced distinctions between similar hues. It would have been used in fashion descriptions, paint colors, and textile industries.
First Recorded Use
The specific compound 'Pale Chestnut' as a standardized color name likely emerged with the increasing precision in color naming for fashion, art, and industry during this period. 'Chestnut' as a color has a much longer history.
Cultural Associations
Chestnut trees and their nuts have cultural significance in many parts of the world, often associated with autumn, harvest, and warmth. The color 'chestnut' itself evokes a sense of natural earthiness and warmth. 'Pale Chestnut' might suggest a softer, more delicate version of this natural hue, perhaps used to convey elegance or subtlety in fashion and interior design. It's a color that often feels classic and understated.
Code Snippets
/* Background */
.element {
background-color: #DDADAF;
}
/* Text */
.element {
color: #DDADAF;
}
/* Border */
.element {
border: 1px solid #DDADAF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DDADAF,
#ADDDDB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DDADAF,
#ADDDDB
);
}
// SCSS variable
$pale-chestnut: #DDADAF;
// With RGB channels (useful for rgba() usage)
$pale-chestnut-r: 221;
$pale-chestnut-g: 173;
$pale-chestnut-b: 175;
// Usage
.element {
background-color: $pale-chestnut;
color: rgba($pale-chestnut-r, $pale-chestnut-g, $pale-chestnut-b, 0.8);
}