Silver Pink
HEX: #C4AEAD | Modern Palette
Color Specifications
#C4AEAD
196, 174, 173
2°, 11% ,76%
0, 11.22, 11.73, 23.14
About Silver Pink
Silver Pink (#C4AEAD) is a color with RGB(196, 174, 173) and HSL(2.61°, 11.73%, 76.86%). 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 #ADC3C4, which creates strong contrast. Its triadic palette includes #ADC4AE and #AEADC4. The name comes from Silver Pink (English).
- HEX: #C4AEAD
- RGB: 196, 174, 173
- HSL: 2.61°, 11.73%, 76.86%
- Mood: Minimal
- Style: Pastel, Warm
- Use case: Text, Background, Border
- Complementary color: #ADC3C4
- Triadic colors: #ADC4AE, #AEADC4
- The name comes from Silver Pink (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 #C4AEAD from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The combination of 'silver' and 'pink' as a color descriptor reflects a desire to describe more nuanced and sophisticated shades. Pink itself has a long history, evolving from a general descriptor of light red to its own distinct color category. Silver, as a metallic color, has always been associated with elegance and preciousness. The pairing 'Silver Pink' suggests a muted, refined, and often cool-toned pink, distinguishing it from more vibrant or warm pinks. It became popular in various applications, from clothing and accessories to home decor and makeup, for its delicate and versatile appeal.
First Recorded Use
While 'silver' and 'pink' have existed for centuries, the specific compound color name 'Silver Pink' likely gained traction as a descriptive color term in fashion, interior design, and cosmetics during the late 19th or early 20th century. Exact first documented use can be elusive for descriptive color names.
Cultural Associations
Silver Pink is often associated with femininity, grace, and understated elegance. It can evoke feelings of calm, sophistication, and a touch of vintage charm. In fashion, it's seen as a versatile neutral that can be dressed up or down. In interior design, it's used to create serene and inviting spaces. It's less overtly 'girly' than some brighter pinks, making it appealing across a broader demographic.
Code Snippets
/* Background */
.element {
background-color: #C4AEAD;
}
/* Text */
.element {
color: #C4AEAD;
}
/* Border */
.element {
border: 1px solid #C4AEAD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C4AEAD,
#BDCACB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C4AEAD,
#BDCACB
);
}
// SCSS variable
$silver-pink: #C4AEAD;
// With RGB channels (useful for rgba() usage)
$silver-pink-r: 196;
$silver-pink-g: 174;
$silver-pink-b: 173;
// Usage
.element {
background-color: $silver-pink;
color: rgba($silver-pink-r, $silver-pink-g, $silver-pink-b, 0.8);
}