Old Lace
HEX: #FDF5E6 | Modern Palette
Color Specifications
#FDF5E6
253, 245, 230
39°, 85% ,94%
0, 3, 9, 1
About Old Lace
Old Lace (#FDF5E6) is a color with RGB(253, 245, 230) and HSL(39.1°, 85.2%, 94.7%). 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 #E6EEFD, which creates strong contrast. Its triadic palette includes #E6FDF5 and #F5E6FD. The name comes from Old Lace (English).
- HEX: #FDF5E6
- RGB: 253, 245, 230
- HSL: 39.1°, 85.2%, 94.7%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #E6EEFD
- Triadic colors: #E6FDF5, #F5E6FD
- The name comes from Old Lace (English).
Live Components
Color Palettes
Old Lace #FDF5E6 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
Old Lace #FDF5E6 pairs with #E6EEFD as its complementary color, and #E6FDF5 and #F5E6FD in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Shades & Tints
The shade and tint range for Old Lace #FDF5E6 moves from dark #181002 tones through the base color to lighter #FDF6E7 tones, making it useful for depth, hierarchy, and background variation.
Frequently Asked Questions
Name, History & Etymology
History
The term 'lace' itself dates back to the 15th century, referring to an openwork fabric. 'Old lace' evokes the image of vintage, often slightly yellowed or ecru-colored lace, distinct from stark white. As a named color, it was formalized as part of the X11 color names, which were developed in the 1980s and 1990s for use in computer graphics. It was later adopted into web standards, becoming a recognized HTML color.
First Recorded Use
The specific color name 'Old Lace' (and its hexadecimal representation #fdf5e6) gained prominence with the advent of web colors and digital design specifications. While the concept of 'off-white' or 'cream' is ancient, the precise naming and standardization for digital use are more recent.
Cultural Associations
The color 'Old Lace' often carries connotations of vintage elegance, softness, and a touch of nostalgia. It's frequently used in design to create a warm, inviting, and classic aesthetic. It can evoke images of antique textiles, delicate bridal wear, or traditional home decor. It's a popular choice for backgrounds where a pure white might be too stark, offering a softer contrast.
Code Snippets
/* Background */
.element {
background-color: #FDF5E6;
}
/* Text */
.element {
color: #FDF5E6;
}
/* Border */
.element {
border: 1px solid #FDF5E6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FDF5E6,
#E6EEFD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FDF5E6,
#E6EEFD
);
}
// SCSS variable
$old-lace: #FDF5E6;
// With RGB channels (useful for rgba() usage)
$old-lace-r: 253;
$old-lace-g: 245;
$old-lace-b: 230;
// Usage
.element {
background-color: $old-lace;
color: rgba($old-lace-r, $old-lace-g, $old-lace-b, 0.8);
}