Pale Silver

HEX: #C9C0BB | Modern Palette

On White
1.79:1
FAIL
On Black
11.74:1
PASS

Color Specifications

HEX
#C9C0BB
RGB
201, 192, 187
HSL
21°, 11% ,76%
CMYK
0, 4, 7, 21

About Pale Silver

Pale Silver (#C9C0BB) is a color with RGB(201, 192, 187) and HSL(21.4°, 11.5%, 76.1%). It is commonly associated with Minimal moods. In design, it fits Pastel, Warm styles and is suitable for Text, Background, Border. Its complementary color is #BBC4C9, which creates strong contrast. Its triadic palette includes #BBC9C0 and #C0BBC9. The name comes from Pale Silver (English).

  • HEX: #C9C0BB
  • RGB: 201, 192, 187
  • HSL: 21.4°, 11.5%, 76.1%
  • Mood: Minimal
  • Style: Pastel, Warm
  • Use case: Text, Background, Border
  • Complementary color: #BBC4C9
  • Triadic colors: #BBC9C0, #C0BBC9
  • The name comes from Pale Silver (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 #C9C0BB from deepest shade to lightest tint.

Color Characteristics

Mood
Minimal
Style
Pastel Warm

Accessibility Simulation

Deuteranopia #C3C3BB
Protanopia #C1C1BB
Tritanopia #CABFBF
Achromatopsia #C2C2C2

Frequently Asked Questions

Pale Silver (#C9C0BB) is a color with RGB(201, 192, 187) and HSL(21.4°, 11.5%, 76.1%).

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

#C9C0BB is suitable for Text, Background, Border and works well with Pastel, Warm styles.

#C9C0BB is commonly associated with Minimal.

The name Pale Silver is linked to Pale Silver from English, meaning A light, desaturated shade of silver, often with a hint of warmth or a muted quality..

Name, History & Etymology

Origin Word Pale Silver
Meaning A light, desaturated shade of silver, often with a hint of warmth or a muted quality.
Language English
First Recorded Use Late 19th to Early 20th Century (as a specific color name)

History

The color silver itself has a long history, associated with the metal, moonlight, elegance, and wealth. 'Pale' is a common modifier to indicate a lighter, less intense version of a color. The specific combination 'pale silver' emerged as a way to differentiate a softer, often less reflective or more muted version of silver from a bright, metallic silver. It found popularity in fashion for evening wear, bridal gowns, and accessories, as well as in interior design for its sophisticated and calming effect. In the digital age, 'Pale Silver' is a recognized web color and is often used in UI design for backgrounds or subtle accents.

First Recorded Use

While 'pale' and 'silver' have existed for centuries, the specific compound 'pale silver' as a distinct color descriptor likely gained traction with the advent of more precise color naming in fashion, interior design, and art, particularly as dyes and pigments allowed for a wider range of subtle variations. References to 'silver' as a color date back to Old English, and 'pale' is also ancient. The combination to describe a specific hue became more common in the late 19th and early 20th centuries.

Cultural Associations

Pale silver is often associated with sophistication, understated elegance, and modernity. It can evoke feelings of calm, serenity, and purity. In fashion, it's a popular choice for formal wear, often seen as a softer alternative to stark white or bright silver. In home decor, it's used to create light, airy, and contemporary spaces. It's also frequently used in branding for luxury goods, technology, and beauty products to convey a sense of quality and refinement.

Similar Named Colors

Silver #C0C0C0 ΔE 4.50
Gray (X11 Gray) #BEBEBE ΔE 4.58
Silver Sand #BFC1C2 ΔE 5.55
Timberwolf #DBD7D2 ΔE 5.89

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #C9C0BB,
        #BBC4C9
    );
}

// SCSS variable
$pale-silver: #C9C0BB;

// With RGB channels (useful for rgba() usage)
$pale-silver-r: 201;
$pale-silver-g: 192;
$pale-silver-b: 187;

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