Pink Flamingo
HEX: #FC74FD | Modern Palette
Color Specifications
#FC74FD
252, 116, 253
299°, 97% ,72%
0, 54, 0, 1
About Pink Flamingo
Pink Flamingo (#FC74FD) is a color with RGB(252, 116, 253) and HSL(299.6°, 97.2%, 72.4%). It is commonly associated with Bold, Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Accent. Its complementary color is #75FD74, which creates strong contrast. Its triadic palette includes #FDFC74 and #74FDFC. The name comes from Pink Flamingo (English).
- HEX: #FC74FD
- RGB: 252, 116, 253
- HSL: 299.6°, 97.2%, 72.4%
- Mood: Bold, Playful
- Style: Neon
- Use case: Text, Button, Accent
- Complementary color: #75FD74
- Triadic colors: #FDFC74, #74FDFC
- The name comes from Pink Flamingo (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 #FC74FD from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The plastic pink flamingo was created by Don Featherstone in 1957 while working for Union Products, a plastics company in Leominster, Massachusetts. It quickly became a popular symbol of suburban kitsch and Americana. While initially a mass-produced item, its cultural significance grew, leading to it being seen as both an object of derision and ironic appreciation. Featherstone himself won an Ig Nobel Prize for art in 1996 for his creation. Despite Union Products ceasing operations in 2006, the molds were purchased, and production of the original design continues under new ownership.
First Recorded Use
The plastic pink flamingo lawn ornament was designed in 1957 by Don Featherstone for Union Products.
Cultural Associations
The pink flamingo lawn ornament is a quintessential symbol of American kitsch, often associated with suburban aesthetics, trailer parks, and a certain playful, sometimes ironic, sense of style. It has been embraced by various subcultures, including those who appreciate retro Americana and camp aesthetics. It's frequently used in pop culture as a shorthand for a particular type of quirky or 'tacky' taste. Its bright, artificial pink color (often represented by hex codes like #fc74fd or similar vibrant pinks) is integral to its identity.
Code Snippets
/* Background */
.element {
background-color: #FC74FD;
}
/* Text */
.element {
color: #FC74FD;
}
/* Border */
.element {
border: 1px solid #FC74FD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FC74FD,
#75FD74
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FC74FD,
#75FD74
);
}
// SCSS variable
$pink-flamingo: #FC74FD;
// With RGB channels (useful for rgba() usage)
$pink-flamingo-r: 252;
$pink-flamingo-g: 116;
$pink-flamingo-b: 253;
// Usage
.element {
background-color: $pink-flamingo;
color: rgba($pink-flamingo-r, $pink-flamingo-g, $pink-flamingo-b, 0.8);
}