Dust Storm

HEX: #E5CCC9 | Modern Palette

On White
1.52:1
FAIL
On Black
13.81:1
PASS

Color Specifications

HEX
#E5CCC9
RGB
229, 204, 201
HSL
6°, 12% ,89%
CMYK
0, 10.92, 12.23, 10.2

About Dust Storm

Dust Storm (#E5CCC9) is a color with RGB(229, 204, 201) and HSL(6.43°, 12.23%, 89.8%). 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 #C9E2E5, which creates strong contrast. Its triadic palette includes #C9E5CC and #CCC9E5.

  • HEX: #E5CCC9
  • RGB: 229, 204, 201
  • HSL: 6.43°, 12.23%, 89.8%
  • Mood: Minimal
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #C9E2E5
  • Triadic colors: #C9E5CC, #CCC9E5

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

Color Characteristics

Mood
Minimal
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #D4D4C8
Protanopia #CFCFC9
Tritanopia #E5CCCC
Achromatopsia #D1D1D1

Frequently Asked Questions

Dust Storm (#E5CCC9) is a color with RGB(229, 204, 201) and HSL(6.43°, 12.23%, 89.8%).

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

#E5CCC9 is suitable for Text, Background, Print and works well with Pastel, Warm styles.

#E5CCC9 is commonly associated with Minimal.

Similar Named Colors

Pale Pink #FADADD ΔE 5.16
Misty Rose #FFE4E1 ΔE 5.53
Queen Pink #E8CCD7 ΔE 6.11
Piggy Pink #FDDDE6 ΔE 7.18

Code Snippets

/* Background */
.element {
    background-color: #E5CCC9;
}

/* Text */
.element {
    color: #E5CCC9;
}

/* Border */
.element {
    border: 1px solid #E5CCC9;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #E5CCC9,
        #E2E7E8
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #E5CCC9,
        #E2E7E8
    );
}

// SCSS variable
$dust-storm: #E5CCC9;

// With RGB channels (useful for rgba() usage)
$dust-storm-r: 229;
$dust-storm-g: 204;
$dust-storm-b: 201;

// Usage
.element {
    background-color: $dust-storm;
    color: rgba($dust-storm-r, $dust-storm-g, $dust-storm-b, 0.8);
}