Sandstorm

HEX: #ECD540 | Modern Palette

On White
1.48:1
FAIL
On Black
14.16:1
PASS

Color Specifications

HEX
#ECD540
RGB
236, 213, 64
HSL
52°, 81% ,58%
CMYK
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

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 #ECD540 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #DCDC3E
Protanopia #D8D840
Tritanopia #F6CACA
Achromatopsia #D4D4D4

Frequently Asked Questions

Sandstorm (#ECD540) is a color with RGB(236, 213, 64) and HSL(52°, 81.9%, 58.8%).

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

#ECD540 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#ECD540 is commonly associated with Energetic, Bold.

The name Sandstorm is linked to Sandstorm from English, meaning A storm of wind bearing a cloud of sand, especially in a desert..

Name, History & Etymology

Origin Word Sandstorm
Meaning A storm of wind bearing a cloud of sand, especially in a desert.
Language English
First Recorded Use 19th Century

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.

Similar Named Colors

Citrine #E4D00A ΔE 2.78
Safety Yellow #EED202 ΔE 2.96
Dandelion #F0E130 ΔE 3.61
Banana Yellow #FFE135 ΔE 3.76

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