Piggy Pink

HEX: #FDDDE6 | Modern Palette

On White
1.26:1
FAIL
On Black
16.66:1
PASS

Color Specifications

HEX
#FDDDE6
RGB
253, 221, 230
HSL
343°, 88% ,92%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #E7E7E5
Protanopia #E1E1E6
Tritanopia #FCDEDE
Achromatopsia #E5E5E5

Frequently Asked Questions

Piggy Pink (#FDDDE6) is a color with RGB(253, 221, 230) and HSL(343.1°, 88.9%, 92.9%).

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

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

#FDDDE6 is commonly associated with Playful.

The name Piggy Pink is linked to Piggy Pink from English, meaning A light, soft pink color, often associated with the color of a piglet or the inside of a pig's ear..

Name, History & Etymology

Origin Word Piggy Pink
Meaning A light, soft pink color, often associated with the color of a piglet or the inside of a pig's ear.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Pale Pink #FADADD ΔE 2.48
Queen Pink #E8CCD7 ΔE 4.25
Pastel Pink #FFD1DC ΔE 4.32
Pink Lace #FFDDF4 ΔE 4.86

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