Barbie Pink
HEX: #E0218A | Modern Palette
Color Specifications
#E0218A
224, 33, 138
327°, 85% ,87%
0, 85.27, 38.39, 12.16
About Barbie Pink
Barbie Pink (#E0218A) is a color with RGB(224, 33, 138) and HSL(327.02°, 85.27%, 87.84%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #21E077, which creates strong contrast. Its triadic palette includes #8AE021 and #218AE0. The name comes from Barbie (English).
- HEX: #E0218A
- RGB: 224, 33, 138
- HSL: 327.02°, 85.27%, 87.84%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #21E077
- Triadic colors: #8AE021, #218AE0
- The name comes from Barbie (English).
Live Components
Color Palettes
Barbie Pink #E0218A 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
Barbie Pink #E0218A pairs with #21E077 as its complementary color, and #8AE021 and #218AE0 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Barbie Pink' is inextricably linked to the Barbie doll, first introduced by Mattel in March 1959. From its inception, Barbie was marketed with a distinct aesthetic, and a vibrant, often fuchsia or hot pink, became a signature color for the brand, appearing on packaging, accessories, and promotional materials. While the exact shade has varied slightly over the decades, the general concept of 'Barbie Pink' as a bright, playful, and distinctly feminine pink has remained consistent. It became a cultural phenomenon, representing a specific type of glamour, fashion, and childhood fantasy. The color's prominence saw a significant resurgence with the marketing and release of the 'Barbie' movie in 2023, which embraced and amplified the iconic pink aesthetic, leading to a global trend known as 'Barbiecore'.
First Recorded Use
1959 (for the doll's introduction), early 1960s (for the color association)
Cultural Associations
Symbol of femininity and girlhood, often associated with fashion, glamour, and play. Can evoke nostalgia for those who grew up with Barbie dolls. Has been both celebrated and criticized; celebrated for empowering girls through imaginative play and fashion, criticized for promoting unrealistic body standards and consumerism. The 2023 'Barbie' movie significantly re-popularized the color, making it a high-fashion and mainstream trend ('Barbiecore'). Often used in pop culture to denote a certain type of 'girly' aesthetic, sometimes ironically or subversively.
Code Snippets
/* Background */
.element {
background-color: #E0218A;
}
/* Text */
.element {
color: #E0218A;
}
/* Border */
.element {
border: 1px solid #E0218A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E0218A,
#C6FADD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E0218A,
#C6FADD
);
}
// SCSS variable
$barbie-pink: #E0218A;
// With RGB channels (useful for rgba() usage)
$barbie-pink-r: 224;
$barbie-pink-g: 33;
$barbie-pink-b: 138;
// Usage
.element {
background-color: $barbie-pink;
color: rgba($barbie-pink-r, $barbie-pink-g, $barbie-pink-b, 0.8);
}