Pale Pink
HEX: #FADADD | Modern Palette
Color Specifications
#FADADD
250, 218, 221
354°, 76% ,91%
0, 13, 12, 2
About Pale Pink
Pale Pink (#FADADD) is a color with RGB(250, 218, 221) and HSL(354.4°, 76.2%, 91.8%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #DAFAF7, which creates strong contrast. Its triadic palette includes #DDFADA and #DADDFA. The name comes from Pale Pink (English).
- HEX: #FADADD
- RGB: 250, 218, 221
- HSL: 354.4°, 76.2%, 91.8%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #DAFAF7
- Triadic colors: #DDFADA, #DADDFA
- The name comes from Pale Pink (English).
Live Components
Color Palettes
Pale Pink #FADADD 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 Pink #FADADD pairs with #DAFAF7 as its complementary color, and #DDFADA and #DADDFA in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#E4E4DC
#DEDEDD
#FADADA
#E2E2E2
Frequently Asked Questions
Name, History & Etymology
History
The word 'pink' itself as a color name is believed to derive from the flower 'pink' (Dianthus), which became popular in the 17th century. Before this, shades of pink might have been described as 'light red' or 'rose-colored'. As 'pink' became established, modifiers like 'pale' were naturally applied to distinguish lighter variations. Throughout history, pink, and by extension pale pink, has had varying associations. In the 18th century, it was popular in Rococo art and fashion, often associated with femininity and romance. In the 19th century, it continued to be used, but its gender associations were less rigid than they would become later. The 20th century saw a strong push to associate pink with girls and femininity, particularly after World War II, making 'pale pink' a quintessential 'girly' color in Western cultures. More recently, there's been a movement to reclaim pink for all genders and to appreciate its broader spectrum of meanings.
First Recorded Use
While 'pink' as a color name emerged in the late 17th century, the specific compound 'pale pink' would have naturally followed as a descriptor. Early uses are hard to pinpoint to a single instance, but it would have been in common descriptive use by the 18th century in fashion and art.
Cultural Associations
Often associated with femininity, tenderness, sweetness, and romance in Western cultures. Can symbolize innocence, childhood, and new beginnings. In some contexts, it can represent playfulness or lightheartedness. Used extensively in baby products, particularly for girls. In fashion, it can evoke a soft, delicate, or elegant aesthetic. The 'millennial pink' trend of the 2010s saw a resurgence of various pale pink shades, broadening its appeal beyond traditional feminine contexts.
Code Snippets
/* Background */
.element {
background-color: #FADADD;
}
/* Text */
.element {
color: #FADADD;
}
/* Border */
.element {
border: 1px solid #FADADD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FADADD,
#DAFAF7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FADADD,
#DAFAF7
);
}
// SCSS variable
$pale-pink: #FADADD;
// With RGB channels (useful for rgba() usage)
$pale-pink-r: 250;
$pale-pink-g: 218;
$pale-pink-b: 221;
// Usage
.element {
background-color: $pale-pink;
color: rgba($pale-pink-r, $pale-pink-g, $pale-pink-b, 0.8);
}