Deep Peach

HEX: #FFCBA4 | Modern Palette

On White
1.47:1
FAIL
On Black
14.33:1
PASS

Color Specifications

HEX
#FFCBA4
RGB
255, 203, 164
HSL
25°, 100% ,82%
CMYK
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

LIGHT
DARK
System Notification Box

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.

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

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.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

DEEP PEACH
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

DEEP PEACH
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

DEEP PEACH
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

DEEP PEACH
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

DEEP PEACH
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

DEEP PEACH

Shades & Tints

The shade and tint range for Deep Peach #FFCBA4 moves from dark #1A0B00 tones through the base color to lighter #FFF0E6 tones, making it useful for depth, hierarchy, and background variation.

DEEP PEACH

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #DCDCA2
Protanopia #D2D2A4
Tritanopia #FFC7C7
Achromatopsia #D5D5D5

Frequently Asked Questions

Deep Peach (#FFCBA4) is a color with RGB(255, 203, 164) and HSL(25.7°, 100%, 82.2%).

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

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

#FFCBA4 is commonly associated with Playful.

The name Deep Peach is linked to Deep Peach from English, meaning A color that is a darker, richer shade of the fruit peach..

Name, History & Etymology

Origin Word Deep Peach
Meaning A color that is a darker, richer shade of the fruit peach.
Language English
First Recorded Use 20th Century

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.

Similar Named Colors

Apricot #FBCEB1 ΔE 3.06
Light Apricot #FDD5B1 ΔE 3.60
Peach-orange #FFCC99 ΔE 3.63
Peach Puff #FFDAB9 ΔE 4.81

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