Pale Chestnut

HEX: #DDADAF | Modern Palette

On White
1.97:1
FAIL
On Black
10.67:1
PASS

Color Specifications

HEX
#DDADAF
RGB
221, 173, 175
HSL
357°, 41% ,77%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Print

Accessibility Simulation

Deuteranopia #BDBDAE
Protanopia #B3B3AF
Tritanopia #DDADAD
Achromatopsia #B9B9B9

Frequently Asked Questions

Pale Chestnut (#DDADAF) is a color with RGB(221, 173, 175) and HSL(357.5°, 41.4%, 77.3%).

#DDADAF pairs strongly with #ADDDDB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#DDADAF is suitable for Text, Print and works well with Warm styles.

#DDADAF is commonly associated with Romantic.

The name Pale Chestnut is linked to Pale Chestnut from English, meaning A light, reddish-brown color, reminiscent of a chestnut that is not deeply colored..

Name, History & Etymology

Origin Word Pale Chestnut
Meaning A light, reddish-brown color, reminiscent of a chestnut that is not deeply colored.
Language English
First Recorded Use Late 19th - Early 20th Century

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.

Similar Named Colors

Pastel Pink #DEA5A4 ΔE 2.95
Spanish Pink #F7BFBE ΔE 5.43
Tea Rose #F4C2C2 ΔE 5.46
Tuscany #C09999 ΔE 6.75

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);
}