Barbie Pink

HEX: #E0218A | Modern Palette

On White
4.42:1
FAIL
On Black
4.75:1
PASS

Color Specifications

HEX
#E0218A
RGB
224, 33, 138
HSL
327°, 85% ,87%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #838386
Protanopia #57578B
Tritanopia #DC3C3C
Achromatopsia #787878

Frequently Asked Questions

Barbie Pink (#E0218A) is a color with RGB(224, 33, 138) and HSL(327.02°, 85.27%, 87.84%).

#E0218A pairs strongly with #21E077 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#E0218A is suitable for Text, Button, Background and works well with Neon, Warm styles.

#E0218A is commonly associated with Playful.

The name Barbie Pink is linked to Barbie from English, meaning A diminutive of Barbara, but in this context, referring to the fashion doll 'Barbie' created by Mattel..

Name, History & Etymology

Origin Word Barbie
Meaning A diminutive of Barbara, but in this context, referring to the fashion doll 'Barbie' created by Mattel.
Language English
First Recorded Use Mid-20th Century

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.

Similar Named Colors

Deep Cerise #DA3287 ΔE 1.50
Vivid Cerise #DA1D81 ΔE 2.02
Mexican Pink #E4007C ΔE 3.07
Magenta-pink #CC338B ΔE 3.60

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