Tickle Me Pink
HEX: #FC89AC | Modern Palette
Color Specifications
#FC89AC
252, 137, 172
341°, 95% ,76%
0, 46, 32, 1
About Tickle Me Pink
Tickle Me Pink (#FC89AC) is a color with RGB(252, 137, 172) and HSL(341.7°, 95%, 76.3%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #89FCD9, which creates strong contrast. Its triadic palette includes #ACFC89 and #89ACFC. The name comes from Tickle Me Pink (English).
- HEX: #FC89AC
- RGB: 252, 137, 172
- HSL: 341.7°, 95%, 76.3%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #89FCD9
- Triadic colors: #ACFC89, #89ACFC
- The name comes from Tickle Me Pink (English).
Live Components
Color Palettes
Tickle Me Pink #FC89AC 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
Tickle Me Pink #FC89AC pairs with #89FCD9 as its complementary color, and #ACFC89 and #89ACFC in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Crayola's 'Tickle Me Pink' was developed as a vibrant, playful pink, reflecting the brand's strategy to create imaginative and evocative color names. Its introduction was part of a broader trend in the late 20th century for consumer products, especially those targeting children, to use whimsical and anthropomorphic names for colors. The name itself draws from the idiomatic expression 'tickle me pink,' which signifies extreme pleasure or amusement. This color has remained a consistent part of the Crayola lineup since its debut.
First Recorded Use
The color name 'Tickle Me Pink' was introduced by Crayola in 1993 as part of their crayon color palette. It was one of 16 new colors added that year, replacing some retired shades.
Cultural Associations
The phrase 'tickle me pink' itself has roots in English slang, suggesting a reaction of delight so intense it might cause a blush. Crayola's adoption of this idiom for a crayon color imbued the shade with a sense of fun and lightheartedness, resonating with its primary audience. The color's bright, cheerful hue aligns well with the playful connotation of its name, making it a popular choice for children's art and crafts.
Code Snippets
/* Background */
.element {
background-color: #FC89AC;
}
/* Text */
.element {
color: #FC89AC;
}
/* Border */
.element {
border: 1px solid #FC89AC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FC89AC,
#89FCD9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FC89AC,
#89FCD9
);
}
// SCSS variable
$tickle-me-pink: #FC89AC;
// With RGB channels (useful for rgba() usage)
$tickle-me-pink-r: 252;
$tickle-me-pink-g: 137;
$tickle-me-pink-b: 172;
// Usage
.element {
background-color: $tickle-me-pink;
color: rgba($tickle-me-pink-r, $tickle-me-pink-g, $tickle-me-pink-b, 0.8);
}