Unbleached Silk

HEX: #FFDDCA | Modern Palette

On White
1.28:1
FAIL
On Black
16.45:1
PASS

Color Specifications

HEX
#FFDDCA
RGB
255, 221, 202
HSL
21°, 20% ,100%
CMYK
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

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

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #E8E8C9
Protanopia #E1E1CA
Tritanopia #FFDBDB
Achromatopsia #E4E4E4

Frequently Asked Questions

Unbleached Silk (#FFDDCA) is a color with RGB(255, 221, 202) and HSL(21.51°, 20.78%, 100%).

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

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

The name Unbleached Silk is linked to Unbleached Silk from English, meaning Silk that has not undergone the bleaching process to remove its natural yellowish or creamy hue and sericin (a gummy protein)..

Name, History & Etymology

Origin Word Unbleached Silk
Meaning Silk that has not undergone the bleaching process to remove its natural yellowish or creamy hue and sericin (a gummy protein).
Language English
First Recorded Use Late 19th - Early 20th Century (as a specific color name)

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.

Similar Named Colors

Lumber #FFE4CD ΔE 3.86
Apricot #FBCEB1 ΔE 4.92
Peach Puff #FFDAB9 ΔE 5.06
Desert Sand #EDC9AF ΔE 5.29

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