Peach Yellow
HEX: #FADFAD | Modern Palette
Color Specifications
#FADFAD
250, 223, 173
39°, 88% ,82%
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
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 #FADFAD from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}