Desert Sand
HEX: #EDC9AF | Modern Palette
Color Specifications
#EDC9AF
237, 201, 175
25°, 63% ,80%
0, 15, 26, 7
About Desert Sand
Desert Sand (#EDC9AF) is a color with RGB(237, 201, 175) and HSL(25.2°, 63.3%, 80.8%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #AFD3ED, which creates strong contrast. Its triadic palette includes #AFEDC9 and #C9AFED. The name comes from Desert Sand (English).
- HEX: #EDC9AF
- RGB: 237, 201, 175
- HSL: 25.2°, 63.3%, 80.8%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #AFD3ED
- Triadic colors: #AFEDC9, #C9AFED
- The name comes from Desert Sand (English).
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 #EDC9AF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#D4D4AE
#CDCDAF
#F0C6C6
#D0D0D0
Frequently Asked Questions
Name, History & Etymology
History
The term 'desert sand' as a descriptive color has been used for centuries to describe light, yellowish-brown hues. However, its formalization as a specific color name with a corresponding hex code (#edc9af) is a product of the digital age. Color systems like X11, HTML/CSS, and various design software required standardized names and values for colors. This particular shade is often associated with natural, earthy tones and is frequently used in design for its calming and neutral qualities.
First Recorded Use
The specific hex code #edc9af and its common name 'Desert Sand' likely gained prominence with the advent of digital color systems and web design. While the concept of 'desert sand color' existed much earlier, its standardization as a named color with a specific hex value points to a more modern origin, likely mid to late 20th century.
Cultural Associations
The color 'Desert Sand' evokes images of vast, arid landscapes, warmth, and natural environments. It is often associated with tranquility, simplicity, and a connection to nature. In fashion and interior design, it's considered a versatile neutral. It can also carry connotations of adventure and exploration due due to its association with deserts.
Code Snippets
/* Background */
.element {
background-color: #EDC9AF;
}
/* Text */
.element {
color: #EDC9AF;
}
/* Border */
.element {
border: 1px solid #EDC9AF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EDC9AF,
#AFD3ED
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EDC9AF,
#AFD3ED
);
}
// SCSS variable
$desert-sand: #EDC9AF;
// With RGB channels (useful for rgba() usage)
$desert-sand-r: 237;
$desert-sand-g: 201;
$desert-sand-b: 175;
// Usage
.element {
background-color: $desert-sand;
color: rgba($desert-sand-r, $desert-sand-g, $desert-sand-b, 0.8);
}