Candy Pink
HEX: #E4717A | Modern Palette
Color Specifications
#E4717A
228, 113, 122
355°, 68% ,66%
0, 50, 46, 11
About Candy Pink
Candy Pink (#E4717A) is a color with RGB(228, 113, 122) and HSL(355.3°, 68%, 66.9%). It is commonly associated with Playful, Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #71E4DB, which creates strong contrast. Its triadic palette includes #7AE471 and #717AE4. The name comes from Candy Pink (English).
- HEX: #E4717A
- RGB: 228, 113, 122
- HSL: 355.3°, 68%, 66.9%
- Mood: Playful, Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #71E4DB
- Triadic colors: #7AE471, #717AE4
- The name comes from Candy 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 #E4717A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'pink' itself has been used to describe a color since the late 17th century, derived from the flower 'pink' (Dianthus). However, the proliferation of specific pink shades with evocative names like 'Rose Pink,' 'Baby Pink,' and 'Candy Pink' became more prevalent in the 20th century. 'Candy Pink' specifically evokes the imagery of confectionery – think cotton candy, bubblegum, or hard candies – which are often associated with sweetness, youth, and playfulness. Its popularity has waxed and waned, often resurfacing in fashion and design trends that favor bright, optimistic, or nostalgic aesthetics. It gained significant traction in the mid-20th century, particularly in post-war consumer culture, and has seen revivals in subsequent decades, including the Y2K era and contemporary 'Barbiecore' trends.
First Recorded Use
The exact first documented use of 'Candy Pink' as a specific color name is difficult to pinpoint precisely, but its emergence as a recognized color descriptor aligns with the early 20th century, as the naming of specific shades became more common in fashion, cosmetics, and interior design. The concept of 'candy' as a color descriptor for bright, sweet shades of pink and red gained traction around this time.
Cultural Associations
Candy Pink is strongly associated with femininity, youth, and sweetness. It often appears in children's toys, clothing, and decor, particularly for girls. In fashion, it can convey a sense of playful innocence, flirtatiousness, or bold, saccharine chic depending on its application. It's a color that can be perceived as whimsical or, in some contexts, overly saccharine or childish. Its association with 'candy' also links it to indulgence and pleasure. In popular culture, it's frequently used to denote a lighthearted or dreamy aesthetic.
Code Snippets
/* Background */
.element {
background-color: #E4717A;
}
/* Text */
.element {
color: #E4717A;
}
/* Border */
.element {
border: 1px solid #E4717A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E4717A,
#71E4DB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E4717A,
#71E4DB
);
}
// SCSS variable
$candy-pink: #E4717A;
// With RGB channels (useful for rgba() usage)
$candy-pink-r: 228;
$candy-pink-g: 113;
$candy-pink-b: 122;
// Usage
.element {
background-color: $candy-pink;
color: rgba($candy-pink-r, $candy-pink-g, $candy-pink-b, 0.8);
}