Peach Puff
HEX: #FFDAB9 | Modern Palette
Color Specifications
#FFDAB9
255, 218, 185
28°, 100% ,86%
0, 15, 27, 0
About Peach Puff
Peach Puff (#FFDAB9) is a color with RGB(255, 218, 185) and HSL(28.3°, 100%, 86.3%). 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 #B9DEFF, which creates strong contrast. Its triadic palette includes #B9FFDA and #DAB9FF. The name comes from Peach Puff (English).
- HEX: #FFDAB9
- RGB: 255, 218, 185
- HSL: 28.3°, 100%, 86.3%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #B9DEFF
- Triadic colors: #B9FFDA, #DAB9FF
- The name comes from Peach Puff (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 #FFDAB9 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Peach Puff' as a color name is part of a broader trend of naming colors after natural objects, foods, and flowers to evoke specific visual and emotional qualities. 'Peach' itself has been a color name for centuries, referring to the pale orange-pink of the fruit. Adding 'Puff' suggests a lighter, softer, or more delicate version of peach, akin to a cloud or a light pastry. This type of descriptive color naming became particularly prevalent with the advent of standardized color systems and increased commercialization of goods where precise color communication was beneficial.
First Recorded Use
The exact first use of 'Peach Puff' as a color name is difficult to pinpoint to a single date, but color names derived from foods became popular in the late 19th and early 20th centuries. It likely emerged in fashion, cosmetics, or interior design contexts around this time.
Cultural Associations
The color 'Peach Puff' evokes feelings of warmth, softness, and sweetness. It is often associated with femininity, innocence, and comfort. In fashion and interior design, it can be used to create a gentle, inviting, and airy atmosphere. It's a popular choice for spring and summer palettes and is often seen in baby clothing and nursery decor. Its association with a dessert also gives it a comforting and somewhat nostalgic quality.
Code Snippets
/* Background */
.element {
background-color: #FFDAB9;
}
/* Text */
.element {
color: #FFDAB9;
}
/* Border */
.element {
border: 1px solid #FFDAB9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFDAB9,
#B9DEFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFDAB9,
#B9DEFF
);
}
// SCSS variable
$peach-puff: #FFDAB9;
// With RGB channels (useful for rgba() usage)
$peach-puff-r: 255;
$peach-puff-g: 218;
$peach-puff-b: 185;
// Usage
.element {
background-color: $peach-puff;
color: rgba($peach-puff-r, $peach-puff-g, $peach-puff-b, 0.8);
}