Sand
HEX: #C2B280 | Modern Palette
Color Specifications
#C2B280
194, 178, 128
45°, 35% ,63%
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
Color Palettes
Sand #C2B280 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
Sand #C2B280 pairs with #8090C2 as its complementary color, and #80C2B2 and #B280C2 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}