Silver Pink

HEX: #C4AEAD | Modern Palette

On White
2.10:1
FAIL
On Black
10.00:1
PASS

Color Specifications

HEX
#C4AEAD
RGB
196, 174, 173
HSL
2°, 11% ,76%
CMYK
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

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 #C4AEAD from deepest shade to lightest tint.

Color Characteristics

Mood
Minimal
Style
Pastel Warm

Accessibility Simulation

Deuteranopia #B5B5AC
Protanopia #B1B1AD
Tritanopia #C4AEAE
Achromatopsia #B3B3B3

Frequently Asked Questions

Silver Pink (#C4AEAD) is a color with RGB(196, 174, 173) and HSL(2.61°, 11.73%, 76.86%).

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

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

#C4AEAD is commonly associated with Minimal.

The name Silver Pink is linked to Silver Pink from English, meaning A shade of pink with a grayish or silvery undertone, reminiscent of the metallic luster of silver combined with the soft hue of pink..

Name, History & Etymology

Origin Word Silver Pink
Meaning A shade of pink with a grayish or silvery undertone, reminiscent of the metallic luster of silver combined with the soft hue of pink.
Language English
First Recorded Use Late 19th to Early 20th Century (as a named color)

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.

Similar Named Colors

Pale Silver #C9C0BB ΔE 7.44
Tuscany #C09999 ΔE 7.49
Dust Storm #E5CCC9 ΔE 7.88
Pale Chestnut #DDADAF ΔE 8.10

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);
}