Desert Sand

HEX: #EDC9AF | Modern Palette

On White
1.55:1
FAIL
On Black
13.57:1
PASS

Color Specifications

HEX
#EDC9AF
RGB
237, 201, 175
HSL
25°, 63% ,80%
CMYK
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

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

Color Characteristics

Mood
Style
Warm

Accessibility Simulation

Deuteranopia #D4D4AE
Protanopia #CDCDAF
Tritanopia #F0C6C6
Achromatopsia #D0D0D0

Frequently Asked Questions

Desert Sand (#EDC9AF) is a color with RGB(237, 201, 175) and HSL(25.2°, 63.3%, 80.8%).

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

#EDC9AF is suitable for Text, Button, Background and works well with Warm styles.

The name Desert Sand is linked to Desert Sand from English, meaning Refers to the color of sand found in deserts..

Name, History & Etymology

Origin Word Desert Sand
Meaning Refers to the color of sand found in deserts.
Language English
First Recorded Use 20th Century

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.

Similar Named Colors

Apricot #FBCEB1 ΔE 2.94
Light Apricot #FDD5B1 ΔE 4.22
Peach Puff #FFDAB9 ΔE 4.54
Deep Peach #FFCBA4 ΔE 4.88

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