Candy Pink

HEX: #E4717A | Modern Palette

On White
3.03:1
FAIL
On Black
6.94:1
PASS

Color Specifications

HEX
#E4717A
RGB
228, 113, 122
HSL
355°, 68% ,66%
CMYK
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

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

Color Characteristics

Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #9E9E76
Protanopia #84847B
Tritanopia #E37272
Achromatopsia #949494

Frequently Asked Questions

Candy Pink (#E4717A) is a color with RGB(228, 113, 122) and HSL(355.3°, 68%, 66.9%).

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

#E4717A is suitable for Text, Button, Accent and works well with Warm styles.

#E4717A is commonly associated with Playful, Romantic.

The name Candy Pink is linked to Candy Pink from English, meaning A shade of pink resembling the color of various candies, particularly those with a bright, sugary, and often slightly translucent appearance..

Name, History & Etymology

Origin Word Candy Pink
Meaning A shade of pink resembling the color of various candies, particularly those with a bright, sugary, and often slightly translucent appearance.
Language English
First Recorded Use Early 20th Century

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.

Similar Named Colors

Light Carmine Pink #E66771 ΔE 2.33
Light Coral #F08080 ΔE 4.70
Wild Watermelon #FC6C85 ΔE 4.82
Brink Pink #FB607F ΔE 5.35

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