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