Silver Sand

HEX: #BFC1C2 | Modern Palette

On White
1.81:1
FAIL
On Black
11.62:1
PASS

Color Specifications

HEX
#BFC1C2
RGB
191, 193, 194
HSL
200°, 1% ,76%
CMYK
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

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

Color Characteristics

Accessibility Simulation

Deuteranopia #C0C0C2
Protanopia #C1C1C2
Tritanopia #BFC1C1
Achromatopsia #C1C1C1

Frequently Asked Questions

Silver Sand (#BFC1C2) is a color with RGB(191, 193, 194) and HSL(200°, 1.55%, 76.08%).

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

#BFC1C2 is suitable for Text, Background, Border and works well with Monochrome, Pastel styles.

#BFC1C2 is commonly associated with Minimal, Calm.

The name Silver Sand is linked to Silver Sand from English, meaning A descriptive term for sand that is light in color, often with a slight shimmer, resembling the color of silver..

Name, History & Etymology

Origin Word Silver Sand
Meaning A descriptive term for sand that is light in color, often with a slight shimmer, resembling the color of silver.
Language English
First Recorded Use Likely 19th or early 20th century (as a specific color name/descriptor)

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.

Similar Named Colors

Silver #C0C0C0 ΔE 1.05
Gray (X11 Gray) #BEBEBE ΔE 1.24
Light Gray #D3D3D3 ΔE 4.64
Pale Silver #C9C0BB ΔE 5.55

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