Sandstorm
HEX: #ECD540 | Modern Palette
Color Specifications
#ECD540
236, 213, 64
52°, 81% ,58%
0, 10, 73, 7
About Sandstorm
Sandstorm (#ECD540) is a color with RGB(236, 213, 64) and HSL(52°, 81.9%, 58.8%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #4057EC, which creates strong contrast. Its triadic palette includes #40ECD5 and #D540EC. The name comes from Sandstorm (English).
- HEX: #ECD540
- RGB: 236, 213, 64
- HSL: 52°, 81.9%, 58.8%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #4057EC
- Triadic colors: #40ECD5, #D540EC
- The name comes from Sandstorm (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 #ECD540 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of a 'sandstorm' has been observed and described by various cultures throughout history, particularly those living near or traversing desert regions. Ancient texts and oral traditions from the Middle East, North Africa, and Central Asia contain accounts of these powerful weather events. The English term 'sandstorm' is a descriptive compound of 'sand' (Old English 'sand', Germanic origin) and 'storm' (Old English 'storm', Germanic origin). Its widespread use in English coincides with increased European exploration and colonization of desert regions in the 18th and 19th centuries, leading to a need for precise terminology to describe these natural phenomena in reports and scientific papers. The term gained further prominence through popular culture, including adventure stories and later, films.
First Recorded Use
The exact first use is difficult to pinpoint, but the term became common in English literature and scientific descriptions during the 19th century as exploration and understanding of desert environments increased. Earlier descriptions of such phenomena existed, but the compound 'sandstorm' solidified around this period.
Cultural Associations
Sandstorms are often depicted in literature and film as formidable and dangerous natural forces, symbolizing isolation, struggle, and the harshness of nature. They are a common trope in desert-themed narratives, from historical accounts of explorers to science fiction stories set on arid planets. In some cultures, they may be associated with spiritual beliefs or seen as omens. The visual impact of a sandstorm, turning day into night and obscuring the landscape, makes it a powerful symbol. The color #ecd540, 'Sandstorm', evokes the visual appearance of such an event, particularly the dusty, ochre-like hue of the air during a less severe or distant sandstorm, or the color of the sand itself being whipped up.
Code Snippets
/* Background */
.element {
background-color: #ECD540;
}
/* Text */
.element {
color: #ECD540;
}
/* Border */
.element {
border: 1px solid #ECD540;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#ECD540,
#4057EC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#ECD540,
#4057EC
);
}
// SCSS variable
$sandstorm: #ECD540;
// With RGB channels (useful for rgba() usage)
$sandstorm-r: 236;
$sandstorm-g: 213;
$sandstorm-b: 64;
// Usage
.element {
background-color: $sandstorm;
color: rgba($sandstorm-r, $sandstorm-g, $sandstorm-b, 0.8);
}