Lemon Chiffon

HEX: #FFFACD | Modern Palette

On White
1.06:1
FAIL
On Black
19.81:1
PASS

Color Specifications

HEX
#FFFACD
RGB
255, 250, 205
HSL
54°, 100% ,90%
CMYK
0, 2, 20, 0

About Lemon Chiffon

Lemon Chiffon (#FFFACD) is a color with RGB(255, 250, 205) and HSL(54°, 100%, 90.2%). 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 #CDD2FF, which creates strong contrast. Its triadic palette includes #CDFFFA and #FACDFF. The name comes from Lemon Chiffon (English).

  • HEX: #FFFACD
  • RGB: 255, 250, 205
  • HSL: 54°, 100%, 90.2%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #CDD2FF
  • Triadic colors: #CDFFFA, #FACDFF
  • The name comes from Lemon Chiffon (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 #FFFACD from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #FBFBCD
Protanopia #FBFBCD
Tritanopia #FFF5F5
Achromatopsia #F8F8F8

Frequently Asked Questions

Lemon Chiffon (#FFFACD) is a color with RGB(255, 250, 205) and HSL(54°, 100%, 90.2%).

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

#FFFACD is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FFFACD is commonly associated with Playful.

The name Lemon Chiffon is linked to Lemon Chiffon from English, meaning A very pale yellow color, reminiscent of lemon chiffon cake..

Name, History & Etymology

Origin Word Lemon Chiffon
Meaning A very pale yellow color, reminiscent of lemon chiffon cake.
Language English
First Recorded Use Mid-20th Century

History

The term 'chiffon' itself comes from French, meaning 'rag' or 'cloth', and evolved to describe a light, sheer fabric. 'Chiffon cake' was invented in 1927 by Harry Baker, a Los Angeles insurance salesman turned caterer, and its recipe was kept secret until 1948 when he sold it to General Mills. The cake's characteristic light, airy texture and pale yellow color (when lemon flavored) quickly made it popular. The color name 'Lemon Chiffon' likely emerged in the mid-20th century, following the widespread popularity of the cake, to describe a specific shade of very pale, soft yellow, often used in fashion, interior design, and cosmetics.

First Recorded Use

1940s-1950s (as a color name)

Cultural Associations

Lemon Chiffon evokes feelings of lightness, sweetness, and freshness. It is often associated with spring and summer, delicate desserts, and a sense of gentle elegance. In fashion, it can be seen as soft and feminine. In home decor, it can brighten a space without being overly vibrant, offering a subtle warmth. It's a less intense alternative to brighter yellows, providing a more subdued and sophisticated feel.

Similar Named Colors

Cream #FFFDD0 ΔE 1.14
Blond #FAF0BE ΔE 2.79
Pale Spring Bud #ECEBBD ΔE 3.60

Code Snippets

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

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

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

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

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

// SCSS variable
$lemon-chiffon: #FFFACD;

// With RGB channels (useful for rgba() usage)
$lemon-chiffon-r: 255;
$lemon-chiffon-g: 250;
$lemon-chiffon-b: 205;

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