Lemon Chiffon
HEX: #FFFACD | Modern Palette
Color Specifications
#FFFACD
255, 250, 205
54°, 100% ,90%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}