Tumbleweed
HEX: #DEAA88 | Modern Palette
Color Specifications
#DEAA88
222, 170, 136
23°, 56% ,70%
0, 23, 39, 13
About Tumbleweed
Tumbleweed (#DEAA88) is a color with RGB(222, 170, 136) and HSL(23.7°, 56.6%, 70.2%). In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #88BCDE, which creates strong contrast. Its triadic palette includes #88DEAA and #AA88DE. The name comes from Tumbleweed (English).
- HEX: #DEAA88
- RGB: 222, 170, 136
- HSL: 23.7°, 56.6%, 70.2%
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #88BCDE
- Triadic colors: #88DEAA, #AA88DE
- The name comes from Tumbleweed (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 #DEAA88 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of a 'tumbleweed' is intrinsically linked to arid and semi-arid regions, particularly the American West. Several plant species exhibit this 'tumbleweed' behavior, with the most iconic often being Salsola tragus (Russian thistle). This plant was introduced to the United States from Russia in the late 19th century and quickly spread, becoming a symbol of the frontier and open spaces. The term likely arose from a descriptive combination of 'tumble' (to fall or roll) and 'weed' (an undesirable plant). Its visual representation has been heavily used in Western films and literature to evoke feelings of desolation, emptiness, or the passage of time in a deserted place.
First Recorded Use
The term 'tumbleweed' itself appears to have become common in American English in the late 19th century, coinciding with the settlement and observation of the American West. While the phenomenon of plants rolling in the wind has existed for much longer, the specific compound word 'tumbleweed' gained traction during this period.
Cultural Associations
Tumbleweeds are a powerful cultural symbol, especially in American culture. They are frequently used in media (movies, TV shows, cartoons) to signify: - **Desolation/Emptiness:** A lone tumbleweed rolling across a deserted street is a classic trope for an abandoned town or a moment of awkward silence. - **The American West:** It's an iconic image associated with cowboys, prairies, and the frontier. - **Passage of Time:** The slow, wind-driven movement can symbolize the slow passage of time or a lack of activity. - **Rootlessness/Wandering:** Metaphorically, a 'tumbleweed' can refer to a person who is rootless, wanders from place to place, or lacks direction.
Code Snippets
/* Background */
.element {
background-color: #DEAA88;
}
/* Text */
.element {
color: #DEAA88;
}
/* Border */
.element {
border: 1px solid #DEAA88;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DEAA88,
#88BCDE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DEAA88,
#88BCDE
);
}
// SCSS variable
$tumbleweed: #DEAA88;
// With RGB channels (useful for rgba() usage)
$tumbleweed-r: 222;
$tumbleweed-g: 170;
$tumbleweed-b: 136;
// Usage
.element {
background-color: $tumbleweed;
color: rgba($tumbleweed-r, $tumbleweed-g, $tumbleweed-b, 0.8);
}