Flamingo Pink
HEX: #FC8EAC | Modern Palette
Color Specifications
#FC8EAC
252, 142, 172
343°, 94% ,77%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}