Dust Storm
HEX: #E5CCC9 | Modern Palette
Color Specifications
#E5CCC9
229, 204, 201
6°, 12% ,89%
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
Color Palettes
Dust Storm #E5CCC9 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
Dust Storm #E5CCC9 pairs with #C9E2E5 as its complementary color, and #C9E5CC and #CCC9E5 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
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);
}