Timberwolf
HEX: #DBD7D2 | Modern Palette
Color Specifications
#DBD7D2
219, 215, 210
33°, 11% ,84%
0, 2, 4, 14
About Timberwolf
Timberwolf (#DBD7D2) is a color with RGB(219, 215, 210) and HSL(33.3°, 11.1%, 84.1%). It is commonly associated with Minimal moods. In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #D2D6DB, which creates strong contrast. Its triadic palette includes #D2DBD7 and #D7D2DB. The name comes from Timberwolf (English).
- HEX: #DBD7D2
- RGB: 219, 215, 210
- HSL: 33.3°, 11.1%, 84.1%
- Mood: Minimal
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #D2D6DB
- Triadic colors: #D2DBD7, #D7D2DB
- The name comes from Timberwolf (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 #DBD7D2 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'timber wolf' itself has been used to distinguish wolves inhabiting forested regions from those in open plains. The color 'Timberwolf' as a specific shade is a modern designation, reflecting the animal's characteristic muted, earthy gray-brown coat. Its adoption by color manufacturers like Crayola solidified its recognition as a distinct color in popular culture. The shade is a desaturated, light gray-brown, accurately reflecting the natural camouflage of the animal.
First Recorded Use
The color name 'Timberwolf' likely emerged in the mid-to-late 20th century, gaining prominence with its inclusion in Crayola's crayon palette in 2002.
Cultural Associations
The timber wolf is an iconic animal in North American wilderness, often associated with wildness, resilience, and pack dynamics. The color name evokes these natural, untamed qualities, making it popular in contexts aiming for an earthy, understated aesthetic. Its inclusion in children's art supplies also familiarizes a broad audience with this specific naturalistic hue.
Code Snippets
/* Background */
.element {
background-color: #DBD7D2;
}
/* Text */
.element {
color: #DBD7D2;
}
/* Border */
.element {
border: 1px solid #DBD7D2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DBD7D2,
#D2D6DB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DBD7D2,
#D2D6DB
);
}
// SCSS variable
$timberwolf: #DBD7D2;
// With RGB channels (useful for rgba() usage)
$timberwolf-r: 219;
$timberwolf-g: 215;
$timberwolf-b: 210;
// Usage
.element {
background-color: $timberwolf;
color: rgba($timberwolf-r, $timberwolf-g, $timberwolf-b, 0.8);
}