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
Silver Pink #C4AEAD 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
Silver Pink #C4AEAD pairs with #ADC3C4 as its complementary color, and #ADC4AE and #AEADC4 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 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);
}