Unbleached Silk
HEX: #FFDDCA | Modern Palette
Color Specifications
#FFDDCA
255, 221, 202
21°, 20% ,100%
0, 13.33, 20.78, 0
About Unbleached Silk
Unbleached Silk (#FFDDCA) is a color with RGB(255, 221, 202) and HSL(21.51°, 20.78%, 100%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #CAECFF, which creates strong contrast. Its triadic palette includes #CAFFDD and #DDCAFF. The name comes from Unbleached Silk (English).
- HEX: #FFDDCA
- RGB: 255, 221, 202
- HSL: 21.51°, 20.78%, 100%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #CAECFF
- Triadic colors: #CAFFDD, #DDCAFF
- The name comes from Unbleached Silk (English).
Live Components
Color Palettes
Unbleached Silk #FFDDCA 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
Unbleached Silk #FFDDCA pairs with #CAECFF as its complementary color, and #CAFFDD and #DDCAFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#E8E8C9
#E1E1CA
#FFDBDB
#E4E4E4
Frequently Asked Questions
Name, History & Etymology
History
Silk has been produced for thousands of years, originating in China. Traditionally, silk was often used in its natural, unbleached state, showcasing its inherent creamy or yellowish color. As dyeing techniques advanced, bleached silk became common for achieving pure white or vibrant colors. However, the natural, unbleached look retained its appeal, often associated with natural fibers, understated elegance, and a softer aesthetic. The color 'Unbleached Silk' (#ffddca) captures this specific light, warm, and slightly peachy-beige tone that is characteristic of raw or minimally processed silk.
First Recorded Use
The term 'unbleached silk' as a descriptive phrase for the material itself has existed as long as silk processing has, but its use as a specific color name, particularly in fashion, interior design, and later, web colors, became more prominent in the late 19th and early 20th centuries. The hexadecimal color #ffddca specifically represents a light, warm, peachy-beige shade often associated with this material.
Cultural Associations
The color 'Unbleached Silk' often evokes feelings of naturalness, softness, and understated luxury. It's a versatile neutral that can be seen as sophisticated and calming. In fashion, it suggests natural fibers and a classic, timeless style. In interior design, it contributes to warm, inviting, and often minimalist or Scandinavian-inspired aesthetics. It can also be associated with vintage or antique textiles, as many older silk items would have retained this natural hue.
Code Snippets
/* Background */
.element {
background-color: #FFDDCA;
}
/* Text */
.element {
color: #FFDDCA;
}
/* Border */
.element {
border: 1px solid #FFDDCA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFDDCA,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFDDCA,
#FFFFFF
);
}
// SCSS variable
$unbleached-silk: #FFDDCA;
// With RGB channels (useful for rgba() usage)
$unbleached-silk-r: 255;
$unbleached-silk-g: 221;
$unbleached-silk-b: 202;
// Usage
.element {
background-color: $unbleached-silk;
color: rgba($unbleached-silk-r, $unbleached-silk-g, $unbleached-silk-b, 0.8);
}