Pastel Pink

HEX: #FFD1DC | Modern Palette

On White
1.36:1
FAIL
On Black
15.41:1
PASS

Color Specifications

HEX
#FFD1DC
RGB
255, 209, 220
HSL
345°, 100% ,91%
CMYK
0, 18, 14, 0

About Pastel Pink

Pastel Pink (#FFD1DC) is a color with RGB(255, 209, 220) and HSL(345.7°, 100%, 91%). 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 #D1FFF4, which creates strong contrast. Its triadic palette includes #DCFFD1 and #D1DCFF.

  • HEX: #FFD1DC
  • RGB: 255, 209, 220
  • HSL: 345.7°, 100%, 91%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #D1FFF4
  • Triadic colors: #DCFFD1, #D1DCFF

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Pastel Pink #FFD1DC is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

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

Pastel Pink #FFD1DC pairs with #D1FFF4 as its complementary color, and #DCFFD1 and #D1DCFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

PASTEL PINK
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

PASTEL PINK
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

PASTEL PINK
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

PASTEL PINK
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

PASTEL PINK
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

PASTEL PINK

Shades & Tints

The shade and tint range for Pastel Pink #FFD1DC moves from dark #1A0006 tones through the base color to lighter #FFE6EC tones, making it useful for depth, hierarchy, and background variation.

PASTEL PINK

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #E0E0DB
Protanopia #D7D7DC
Tritanopia #FED2D2
Achromatopsia #DDDDDD

Frequently Asked Questions

Pastel Pink (#FFD1DC) is a color with RGB(255, 209, 220) and HSL(345.7°, 100%, 91%).

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

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

#FFD1DC is commonly associated with Playful.

Similar Named Colors

Piggy Pink #FDDDE6 ΔE 4.32
Bubble Gum #FFC1CC ΔE 4.61
Orchid Pink #F2BDCD ΔE 4.79
Pink #FFC0CB ΔE 4.89

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFD1DC,
        #D1FFF4
    );
}

// SCSS variable
$pastel-pink: #FFD1DC;

// With RGB channels (useful for rgba() usage)
$pastel-pink-r: 255;
$pastel-pink-g: 209;
$pastel-pink-b: 220;

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