Pink Lace
HEX: #FFDDF4 | Modern Palette
Color Specifications
#FFDDF4
255, 221, 244
319°, 13% ,100%
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
Color Palettes
Pink Lace #FFDDF4 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Pink Lace #FFDDF4 pairs with #DDFFE8 as its complementary color, and #F4FFDD and #DDF4FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}