Pale Silver
HEX: #C9C0BB | Modern Palette
Color Specifications
#C9C0BB
201, 192, 187
21°, 11% ,76%
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
Color Palettes
Pale Silver #C9C0BB 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
Pale Silver #C9C0BB pairs with #BBC4C9 as its complementary color, and #BBC9C0 and #C0BBC9 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 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.
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);
}