Piggy Pink
HEX: #FDDDE6 | Modern Palette
Color Specifications
#FDDDE6
253, 221, 230
343°, 88% ,92%
0, 13, 9, 1
About Piggy Pink
Piggy Pink (#FDDDE6) is a color with RGB(253, 221, 230) and HSL(343.1°, 88.9%, 92.9%). 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 #DDFDF4, which creates strong contrast. Its triadic palette includes #E6FDDD and #DDE6FD. The name comes from Piggy Pink (English).
- HEX: #FDDDE6
- RGB: 253, 221, 230
- HSL: 343.1°, 88.9%, 92.9%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #DDFDF4
- Triadic colors: #E6FDDD, #DDE6FD
- The name comes from Piggy 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 #FDDDE6 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The association of pink with pigs is long-standing due to their skin color. The 'piggy' diminutive adds a sense of cuteness or softness to the pink. While pink itself has a long history as a color, 'piggy pink' as a named shade is a more recent development, distinguishing it from other pinks like 'rose pink' or 'bubblegum pink'. It often implies a very pale, almost pastel, and slightly warm pink.
First Recorded Use
The exact first use is difficult to pinpoint, but the term 'piggy pink' as a specific color name likely emerged in the latter half of the 20th century, particularly with the rise of commercial color naming for paints, cosmetics, and fashion. The hex code #fddde6 is a modern digital representation.
Cultural Associations
In Western cultures, 'piggy pink' often evokes images of innocence, childhood, and sweetness. It's commonly used in products for babies (especially girls), children's toys, and sometimes in cosmetics or fashion to convey a soft, delicate, or playful aesthetic. It can also be associated with 'flesh tones' in a very light, idealized sense, though this is less common than its association with pigs or general cuteness.
Code Snippets
/* Background */
.element {
background-color: #FDDDE6;
}
/* Text */
.element {
color: #FDDDE6;
}
/* Border */
.element {
border: 1px solid #FDDDE6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FDDDE6,
#DDFDF4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FDDDE6,
#DDFDF4
);
}
// SCSS variable
$piggy-pink: #FDDDE6;
// With RGB channels (useful for rgba() usage)
$piggy-pink-r: 253;
$piggy-pink-g: 221;
$piggy-pink-b: 230;
// Usage
.element {
background-color: $piggy-pink;
color: rgba($piggy-pink-r, $piggy-pink-g, $piggy-pink-b, 0.8);
}