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

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

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