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
Sandstorm #ECD540 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Sandstorm #ECD540 pairs with #4057EC as its complementary color, and #40ECD5 and #D540EC in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}