Silver Sand
HEX: #BFC1C2 | Modern Palette
Color Specifications
#BFC1C2
191, 193, 194
200°, 1% ,76%
1.55, 0.52, 0, 23.92
About Silver Sand
Silver Sand (#BFC1C2) is a color with RGB(191, 193, 194) and HSL(200°, 1.55%, 76.08%). It is commonly associated with Minimal, Calm moods. In design, it fits Monochrome, Pastel styles and is suitable for Text, Background, Border. Its complementary color is #C2C0BF, which creates strong contrast. Its triadic palette includes #C2BFC1 and #C1C2BF. The name comes from Silver Sand (English).
- HEX: #BFC1C2
- RGB: 191, 193, 194
- HSL: 200°, 1.55%, 76.08%
- Mood: Minimal, Calm
- Style: Monochrome, Pastel
- Use case: Text, Background, Border
- Complementary color: #C2C0BF
- Triadic colors: #C2BFC1, #C1C2BF
- The name comes from Silver 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 #BFC1C2 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#C0C0C2
#C1C1C2
#BFC1C1
#C1C1C1
Frequently Asked Questions
Name, History & Etymology
History
The term 'silver sand' has long been used to describe very fine, light-colored sand, often used in horticulture or for decorative purposes due to its purity and appearance. As a color name, it likely emerged with the rise of standardized color palettes in industries like paint, fashion, and interior design, where specific descriptive names were needed for nuanced shades. The hexadecimal code #bfc1c2 represents a very light, cool grey, aligning well with the visual concept of 'silver sand'.
First Recorded Use
The exact first use as a formal color name is difficult to pinpoint without specific historical color dictionaries or paint company records. However, the descriptive phrase 'silver sand' would have been in use much earlier to describe actual sand.
Cultural Associations
The term evokes images of pristine beaches, often associated with luxury, cleanliness, and natural beauty. In gardening, 'silver sand' refers to a specific type of high-purity silica sand used for drainage and propagation, valued for its light color and inert properties. This practical application likely contributed to the widespread recognition of the term.
Code Snippets
/* Background */
.element {
background-color: #BFC1C2;
}
/* Text */
.element {
color: #BFC1C2;
}
/* Border */
.element {
border: 1px solid #BFC1C2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BFC1C2,
#C3C2C1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BFC1C2,
#C3C2C1
);
}
// SCSS variable
$silver-sand: #BFC1C2;
// With RGB channels (useful for rgba() usage)
$silver-sand-r: 191;
$silver-sand-g: 193;
$silver-sand-b: 194;
// Usage
.element {
background-color: $silver-sand;
color: rgba($silver-sand-r, $silver-sand-g, $silver-sand-b, 0.8);
}