Peach

HEX: #FFE5B4 | Modern Palette

On White
1.23:1
FAIL
On Black
17.12:1
PASS

Color Specifications

HEX
#FFE5B4
RGB
255, 229, 180
HSL
39°, 100% ,85%
CMYK
0, 10, 29, 0

About Peach

Peach (#FFE5B4) is a color with RGB(255, 229, 180) and HSL(39.2°, 100%, 85.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 #B4CEFF, which creates strong contrast. Its triadic palette includes #B4FFE5 and #E5B4FF. The name comes from persicum malum (Latin).

  • HEX: #FFE5B4
  • RGB: 255, 229, 180
  • HSL: 39.2°, 100%, 85.3%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #B4CEFF
  • Triadic colors: #B4FFE5, #E5B4FF
  • The name comes from persicum malum (Latin).

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #EDEDB3
Protanopia #E8E8B4
Tritanopia #FFE0E0
Achromatopsia #E8E8E8

Frequently Asked Questions

Peach (#FFE5B4) is a color with RGB(255, 229, 180) and HSL(39.2°, 100%, 85.3%).

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

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

#FFE5B4 is commonly associated with Playful.

The name Peach is linked to persicum malum from Latin, meaning Persian apple.

Name, History & Etymology

Origin Word persicum malum
Meaning Persian apple
Language Latin
First Recorded Use Late Old English / Middle English

History

The peach (Prunus persica) is native to the region of Northwest China between the Tarim Basin and the north slopes of the Kunlun Mountains, where it was first domesticated and cultivated. It was brought to Persia and then to Europe by Alexander the Great, hence the Latin name 'persicum malum' (Persian apple). From Latin, it evolved through Old French 'pesche' and then into Middle English as 'peche' or 'peche'. The spelling 'peach' became standard later. The fruit has been cultivated for thousands of years and is highly valued for its sweet, juicy flesh.

First Recorded Use

The word 'peach' entered English via Old French 'pesche' from Vulgar Latin '*persica' (from Latin 'persicum malum'). The fruit itself was known in ancient times, but the English word's first documented use in its current form is around the 14th century.

Cultural Associations

Peaches hold significant cultural symbolism across various societies. In Chinese culture, peaches are symbols of immortality and longevity, often depicted in art and mythology (e.g., the Peaches of Immortality of the Queen Mother of the West). In Western cultures, peaches can symbolize prosperity, fertility, and a sweet disposition. The phrase 'peachy keen' implies something is excellent or delightful. The color 'peach' is often associated with warmth, softness, and femininity.

Similar Named Colors

Peach Yellow #FADFAD ΔE 1.33
Wheat #F5DEB3 ΔE 2.20
Banana Mania #FAE7B5 ΔE 2.44
Navajo White #FFDEAD ΔE 2.59

Code Snippets

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

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

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

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

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

// SCSS variable
$peach: #FFE5B4;

// With RGB channels (useful for rgba() usage)
$peach-r: 255;
$peach-g: 229;
$peach-b: 180;

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