Pink Lace

HEX: #FFDDF4 | Modern Palette

On White
1.24:1
FAIL
On Black
16.90:1
PASS

Color Specifications

HEX
#FFDDF4
RGB
255, 221, 244
HSL
319°, 13% ,100%
CMYK
0, 13.33, 4.31, 0

About Pink Lace

Pink Lace (#FFDDF4) is a color with RGB(255, 221, 244) and HSL(319.41°, 13.33%, 100%). It is commonly associated with Minimal moods. In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #DDFFE8, which creates strong contrast. Its triadic palette includes #F4FFDD and #DDF4FF. The name comes from Pink Lace (English).

  • HEX: #FFDDF4
  • RGB: 255, 221, 244
  • HSL: 319.41°, 13.33%, 100%
  • Mood: Minimal
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #DDFFE8
  • Triadic colors: #F4FFDD, #DDF4FF
  • The name comes from Pink Lace (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 #FFDDF4 from deepest shade to lightest tint.

Color Characteristics

Mood
Minimal
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #E8E8F3
Protanopia #E1E1F4
Tritanopia #FCE0E0
Achromatopsia #E6E6E6

Frequently Asked Questions

Pink Lace (#FFDDF4) is a color with RGB(255, 221, 244) and HSL(319.41°, 13.33%, 100%).

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

#FFDDF4 is suitable for Text, Background, Print and works well with Pastel, Warm styles.

#FFDDF4 is commonly associated with Minimal.

The name Pink Lace is linked to Pink Lace from English, meaning A light reddish-pink color, often associated with delicate, openwork fabric..

Name, History & Etymology

Origin Word Pink Lace
Meaning A light reddish-pink color, often associated with delicate, openwork fabric.
Language English
First Recorded Use Late 20th Century

History

The word 'pink' as a color name dates back to the late 17th century, derived from the flower 'pink' (Dianthus). 'Lace' as a fabric type has existed for centuries, with its name coming from Old French 'las' (a noose, string, or snare). The combination 'Pink Lace' as a specific color descriptor is a modern invention, designed to evoke a particular aesthetic—softness, femininity, and intricate beauty. It's a descriptive compound that became a proper color name through commercial usage.

First Recorded Use

The specific color name 'Pink Lace' likely emerged with the proliferation of named color swatches in paint, fabric, and cosmetic industries, particularly from the 1980s onwards. The individual words 'pink' and 'lace' have much older origins.

Cultural Associations

The color 'Pink Lace' is strongly associated with femininity, romance, and delicacy. It often appears in bridal wear, lingerie, baby girl items, and decorative home goods. Its 'lace' component adds a layer of sophistication and intricacy, distinguishing it from a simple 'light pink.' It can evoke feelings of nostalgia, charm, and gentle elegance. In some contexts, it might be seen as traditional or even slightly old-fashioned, while in others, it's embraced for its timeless, soft appeal.

Similar Named Colors

Classic Rose #FBCCE7 ΔE 4.52
Shampoo #FFCFF1 ΔE 4.82
Piggy Pink #FDDDE6 ΔE 4.86
Pastel Pink #FFD1DC ΔE 5.79

Code Snippets

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

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

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

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

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

// SCSS variable
$pink-lace: #FFDDF4;

// With RGB channels (useful for rgba() usage)
$pink-lace-r: 255;
$pink-lace-g: 221;
$pink-lace-b: 244;

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