Sand

HEX: #C2B280 | Modern Palette

On White
2.11:1
FAIL
On Black
9.97:1
PASS

Color Specifications

HEX
#C2B280
RGB
194, 178, 128
HSL
45°, 35% ,63%
CMYK
0, 8, 34, 24

About Sand

Sand (#C2B280) is a color with RGB(194, 178, 128) and HSL(45.5°, 35.1%, 63.1%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #8090C2, which creates strong contrast. Its triadic palette includes #80C2B2 and #B280C2. The name comes from sand (Old English).

  • HEX: #C2B280
  • RGB: 194, 178, 128
  • HSL: 45.5°, 35.1%, 63.1%
  • Mood: Earthy
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #8090C2
  • Triadic colors: #80C2B2, #B280C2
  • The name comes from sand (Old 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 #C2B280 from deepest shade to lightest tint.

Color Characteristics

Mood
Earthy
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #B7B77F
Protanopia #B4B480
Tritanopia #C7ADAD
Achromatopsia #B3B3B3

Frequently Asked Questions

Sand (#C2B280) is a color with RGB(194, 178, 128) and HSL(45.5°, 35.1%, 63.1%).

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

#C2B280 is suitable for Text, Logo, Print and works well with Warm styles.

#C2B280 is commonly associated with Earthy.

The name Sand is linked to sand from Old English, meaning sand, sandy shore.

Name, History & Etymology

Origin Word sand
Meaning sand, sandy shore
Language Old English
First Recorded Use Old English (pre-1066)

History

The word 'sand' has deep Germanic roots, tracing back to Proto-Germanic *samdaz, which itself is thought to derive from Proto-Indo-European *sámh₂dʰos. This PIE root is also the source of similar words in other Indo-European languages, such as Greek 'ám(m)os' (sand) and Latin 'sabulum' (gravel, coarse sand). The meaning has remained remarkably consistent throughout its history in English, always referring to the granular material. Over time, it has developed metaphorical uses, such as 'sands of time' (referring to an hourglass and the passage of time) and 'built on sand' (referring to something unstable or poorly founded).

First Recorded Use

The word 'sand' is attested in Old English texts, such as glossaries and literary works like Beowulf, referring to granular material found on shores and deserts.

Cultural Associations

Sand holds significant cultural importance across various civilizations. In ancient Egypt, sand was associated with deserts and the afterlife, often used in burial rituals. In many cultures, sand is a symbol of vastness, time, and impermanence (e.g., 'shifting sands'). Sand mandalas in Tibetan Buddhism are intricate designs made from colored sand, which are ritually destroyed to symbolize the impermanence of life. Beaches, composed largely of sand, are iconic symbols of leisure and vacation in modern Western culture. The 'sandman' is a mythical figure in Western folklore who puts people to sleep by sprinkling magical sand into their eyes.

Similar Named Colors

Light French Beige #C8AD7F ΔE 4.36
Sage #BCB88A ΔE 4.43
Khaki #C3B091 ΔE 5.89
Dark Khaki #BDB76B ΔE 6.37

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #C2B280,
        #8090C2
    );
}

// SCSS variable
$sand: #C2B280;

// With RGB channels (useful for rgba() usage)
$sand-r: 194;
$sand-g: 178;
$sand-b: 128;

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