Deep Peach
HEX: #FFCBA4 | Modern Palette
Color Specifications
#FFCBA4
255, 203, 164
25°, 100% ,82%
0, 20, 36, 0
About Deep Peach
Deep Peach (#FFCBA4) is a color with RGB(255, 203, 164) and HSL(25.7°, 100%, 82.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 #A4D8FF, which creates strong contrast. Its triadic palette includes #A4FFCB and #CBA4FF. The name comes from Deep Peach (English).
- HEX: #FFCBA4
- RGB: 255, 203, 164
- HSL: 25.7°, 100%, 82.2%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #A4D8FF
- Triadic colors: #A4FFCB, #CBA4FF
- The name comes from Deep Peach (English).
Live Components
Color Palettes
Deep Peach #FFCBA4 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Deep Peach #FFCBA4 pairs with #A4D8FF as its complementary color, and #A4FFCB and #CBA4FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color peach itself is named after the fruit, known for its soft, warm, yellowish-pink hue. 'Deep Peach' specifies a version of this color that is more saturated and possibly slightly darker than a 'standard' or 'light' peach. This kind of descriptive modifier ('deep', 'light', 'pale', 'bright') became increasingly important as color palettes expanded and the need for precise communication about specific shades grew. It's a common descriptor in textile, paint, and cosmetic industries.
First Recorded Use
While 'peach' as a color has existed for centuries, the specific descriptor 'deep peach' likely gained traction with the advent of standardized color systems (like Pantone) and increased consumer interest in nuanced color variations, particularly in fashion, cosmetics, and interior design, becoming more common from the mid-20th century onwards.
Cultural Associations
Peach colors are often associated with warmth, friendliness, youth, and sweetness. 'Deep Peach' retains these associations but adds a touch of sophistication or richness due to its deeper tone. It can evoke feelings of comfort and approachability. In fashion, it's often seen as a flattering, warm neutral. In home decor, it can create inviting and cozy spaces. It's less overtly feminine than some pinks but still carries a soft, gentle quality.
Code Snippets
/* Background */
.element {
background-color: #FFCBA4;
}
/* Text */
.element {
color: #FFCBA4;
}
/* Border */
.element {
border: 1px solid #FFCBA4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFCBA4,
#A4D8FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFCBA4,
#A4D8FF
);
}
// SCSS variable
$deep-peach: #FFCBA4;
// With RGB channels (useful for rgba() usage)
$deep-peach-r: 255;
$deep-peach-g: 203;
$deep-peach-b: 164;
// Usage
.element {
background-color: $deep-peach;
color: rgba($deep-peach-r, $deep-peach-g, $deep-peach-b, 0.8);
}