Peach Puff

HEX: #FFDAB9 | Modern Palette

On White
1.31:1
FAIL
On Black
15.98:1
PASS

Color Specifications

HEX
#FFDAB9
RGB
255, 218, 185
HSL
28°, 100% ,86%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #E6E6B8
Protanopia #DEDEB9
Tritanopia #FFD6D6
Achromatopsia #E0E0E0

Frequently Asked Questions

Peach Puff (#FFDAB9) is a color with RGB(255, 218, 185) and HSL(28.3°, 100%, 86.3%).

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

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

#FFDAB9 is commonly associated with Playful.

The name Peach Puff is linked to Peach Puff from English, meaning A light, fluffy dessert or pastry flavored with peaches, or a color resembling such a dessert..

Name, History & Etymology

Origin Word Peach Puff
Meaning A light, fluffy dessert or pastry flavored with peaches, or a color resembling such a dessert.
Language English
First Recorded Use Late 19th - Early 20th Century

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.

Similar Named Colors

Light Apricot #FDD5B1 ΔE 1.45
Very Pale Orange #FFDFBF ΔE 1.83
Bisque #FFE4C4 ΔE 3.86
Apricot #FBCEB1 ΔE 4.12

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