Peach Yellow

HEX: #FADFAD | Modern Palette

On White
1.29:1
FAIL
On Black
16.22:1
PASS

Color Specifications

HEX
#FADFAD
RGB
250, 223, 173
HSL
39°, 88% ,82%
CMYK
0, 11, 31, 2

About Peach Yellow

Peach Yellow (#FADFAD) is a color with RGB(250, 223, 173) and HSL(39°, 88.5%, 82.9%). 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 #ADC8FA, which creates strong contrast. Its triadic palette includes #ADFADF and #DFADFA. The name comes from Peach Yellow (English).

  • HEX: #FADFAD
  • RGB: 250, 223, 173
  • HSL: 39°, 88.5%, 82.9%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #ADC8FA
  • Triadic colors: #ADFADF, #DFADFA
  • The name comes from Peach Yellow (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 #FADFAD from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #E7E7AC
Protanopia #E2E2AD
Tritanopia #FFDADA
Achromatopsia #E2E2E2

Frequently Asked Questions

Peach Yellow (#FADFAD) is a color with RGB(250, 223, 173) and HSL(39°, 88.5%, 82.9%).

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

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

#FADFAD is commonly associated with Playful.

The name Peach Yellow is linked to Peach Yellow from English, meaning A pale, yellowish-orange color resembling the skin of a ripe peach..

Name, History & Etymology

Origin Word Peach Yellow
Meaning A pale, yellowish-orange color resembling the skin of a ripe peach.
Language English
First Recorded Use Late 19th - Early 20th Century

History

The color 'peach' itself has been used to describe a color since at least the late 16th century. However, as color descriptions became more nuanced, especially with the advent of commercial dyes, paints, and fashion, more specific variations like 'Peach Yellow' emerged to differentiate it from 'Peach Pink' or a more general 'Peach'. It often appears in fashion, interior design, and cosmetics to denote a soft, warm, and slightly muted yellow-orange hue. The hexadecimal code #fadfad specifically represents a very light, desaturated yellow with a hint of orange, aligning well with the 'yellow' aspect of 'Peach Yellow'.

First Recorded Use

The specific compound term 'Peach Yellow' as a color name likely gained traction in the late 19th or early 20th century with the rise of standardized color systems and commercial color naming. While 'peach' as a color existed earlier, the 'Peach Yellow' distinction points to a more specific shade.

Cultural Associations

Peach colors, including 'Peach Yellow', are often associated with warmth, softness, comfort, and sometimes femininity. In some cultures, peaches symbolize longevity and immortality. The light, airy quality of 'Peach Yellow' can evoke feelings of spring, new beginnings, and gentle optimism. It's a popular color for nurseries, bridal themes, and spring/summer fashion due to its delicate and inviting nature.

Similar Named Colors

Peach #FFE5B4 ΔE 1.33
Wheat #F5DEB3 ΔE 1.89
Navajo White #FFDEAD ΔE 2.05
Banana Mania #FAE7B5 ΔE 3.03

Code Snippets

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

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

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

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

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

// SCSS variable
$peach-yellow: #FADFAD;

// With RGB channels (useful for rgba() usage)
$peach-yellow-r: 250;
$peach-yellow-g: 223;
$peach-yellow-b: 173;

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