Silver
HEX: #C0C0C0 | Modern Palette
Color Specifications
#C0C0C0
192, 192, 192
0°, 0% ,75%
0, 0, 0, 25
About Silver
Silver (#C0C0C0) is a color with RGB(192, 192, 192) and HSL(0°, 0%, 75.3%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Pastel styles and is suitable for Text, Background, Border. Its complementary color is Silver (#C0C0C0), which creates strong contrast. Its triadic palette includes Silver (#C0C0C0) and Silver (#C0C0C0). The name comes from *silubra (Proto-Germanic).
- HEX: #C0C0C0
- RGB: 192, 192, 192
- HSL: 0°, 0%, 75.3%
- Mood: Minimal
- Style: Monochrome, Pastel
- Use case: Text, Background, Border
- Complementary color: Silver (#C0C0C0)
- Triadic colors: Silver (#C0C0C0), Silver (#C0C0C0)
- The name comes from *silubra (Proto-Germanic).
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 #C0C0C0 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#C0C0C0
#C0C0C0
#C0C0C0
#C0C0C0
Frequently Asked Questions
Name, History & Etymology
History
The word 'silver' has deep roots in Proto-Germanic (*silubra), which then evolved into Old English 'seolfor', Old High German 'silabar', and Old Norse 'silfr'. This Germanic root is distinct from the Latin 'argentum' and Greek 'argyros', suggesting an independent development or borrowing from a non-Indo-European source in ancient times. Some theories link it to an ancient Near Eastern or Caucasian language. The color 'silver' as a descriptor for a metallic, grayish-white hue naturally derives from the appearance of the metal itself. Its use as a color term is well-established across many languages, often directly translating the metal's name.
First Recorded Use
Before 500 AD (reconstructed)
Cultural Associations
Silver, both as a metal and a color, holds significant cultural weight. It is often associated with the moon, femininity, purity, and elegance, contrasting with gold's association with the sun and masculinity. In heraldry, silver (argent) symbolizes peace and sincerity. In folklore, silver is believed to ward off evil spirits and creatures like werewolves. The phrase 'silver lining' refers to a hopeful or comforting aspect in an otherwise dismal situation. The color silver is widely used in fashion, automotive design, and technology to convey modernity, sophistication, and high-tech aesthetics. It also frequently represents second place in competitions.
Code Snippets
/* Background */
.element {
background-color: #C0C0C0;
}
/* Text */
.element {
color: #C0C0C0;
}
/* Border */
.element {
border: 1px solid #C0C0C0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C0C0C0,
#C0C0C0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C0C0C0,
#C0C0C0
);
}
// SCSS variable
$silver: #C0C0C0;
// With RGB channels (useful for rgba() usage)
$silver-r: 192;
$silver-g: 192;
$silver-b: 192;
// Usage
.element {
background-color: $silver;
color: rgba($silver-r, $silver-g, $silver-b, 0.8);
}