Flamingo Pink

HEX: #FC8EAC | Modern Palette

On White
2.19:1
FAIL
On Black
9.60:1
PASS

Color Specifications

HEX
#FC8EAC
RGB
252, 142, 172
HSL
343°, 94% ,77%
CMYK
0, 44, 32, 1

About Flamingo Pink

Flamingo Pink (#FC8EAC) is a color with RGB(252, 142, 172) and HSL(343.6°, 94.8%, 77.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 #8EFCDE, which creates strong contrast. Its triadic palette includes #ACFC8E and #8EACFC. The name comes from Flamingo Pink (English).

  • HEX: #FC8EAC
  • RGB: 252, 142, 172
  • HSL: 343.6°, 94.8%, 77.3%
  • Mood: Bold, Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #8EFCDE
  • Triadic colors: #ACFC8E, #8EACFC
  • The name comes from Flamingo 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 #FC8EAC from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #B7B7A9
Protanopia #9F9FAD
Tritanopia #FA9292
Achromatopsia #AFAFAF

Frequently Asked Questions

Flamingo Pink (#FC8EAC) is a color with RGB(252, 142, 172) and HSL(343.6°, 94.8%, 77.3%).

#FC8EAC pairs strongly with #8EFCDE as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FC8EAC is commonly associated with Bold, Playful.

The name Flamingo Pink is linked to Flamingo Pink from English, meaning A shade of pink resembling the feathers of a flamingo bird..

Name, History & Etymology

Origin Word Flamingo Pink
Meaning A shade of pink resembling the feathers of a flamingo bird.
Language English
First Recorded Use Mid-20th Century

History

The color pink itself has a long history, but its specific naming and cultural associations have evolved. Before the 20th century, pink was often seen as a lighter shade of red and didn't always have distinct gender associations. In the mid-20th century, particularly after World War II, pink became strongly associated with femininity in Western cultures. 'Flamingo Pink' emerged during this period, capitalizing on the exotic and elegant image of the flamingo bird. The bird's vibrant plumage, often a result of its diet, provided a natural and appealing reference for a bright, cheerful pink. This color was popular in mid-century modern design, fashion, and even automobiles, embodying a sense of leisure, tropical escape, and playful sophistication.

First Recorded Use

The specific color name 'Flamingo Pink' likely gained popularity and widespread recognition in the mid-20th century, particularly from the 1940s to 1960s, as vibrant and exotic colors became fashionable in design, fashion, and home decor. While pink shades existed long before, the direct association with flamingos for a specific hue became more common then.

Cultural Associations

Flamingo Pink evokes images of tropical beaches, retro aesthetics (especially 1950s and 60s), and a sense of fun and vibrancy. It is often associated with femininity, youthfulness, and a certain playful elegance. In some contexts, it can also be seen as kitsch or nostalgic. The flamingo itself is a popular motif in resort wear, home decor, and pop culture, further cementing the color's associations with leisure and exoticism.

Similar Named Colors

Baker-Miller Pink #FF91AF ΔE 0.80
Tickle Me Pink #FC89AC ΔE 1.38
Pink Sherbet #F78FA7 ΔE 1.55
Vanilla Ice #F38FA9 ΔE 1.58

Code Snippets

/* Background */
.element {
    background-color: #FC8EAC;
}

/* Text */
.element {
    color: #FC8EAC;
}

/* Border */
.element {
    border: 1px solid #FC8EAC;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FC8EAC,
        #8EFCDE
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FC8EAC,
        #8EFCDE
    );
}

// SCSS variable
$flamingo-pink: #FC8EAC;

// With RGB channels (useful for rgba() usage)
$flamingo-pink-r: 252;
$flamingo-pink-g: 142;
$flamingo-pink-b: 172;

// Usage
.element {
    background-color: $flamingo-pink;
    color: rgba($flamingo-pink-r, $flamingo-pink-g, $flamingo-pink-b, 0.8);
}