Papaya Whip

HEX: #FFEFD5 | Modern Palette

On White
1.13:1
FAIL
On Black
18.56:1
PASS

Color Specifications

HEX
#FFEFD5
RGB
255, 239, 213
HSL
37°, 100% ,91%
CMYK
0, 6, 16, 0

About Papaya Whip

Papaya Whip (#FFEFD5) is a color with RGB(255, 239, 213) and HSL(37.1°, 100%, 91.8%). 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 #D5E5FF, which creates strong contrast. Its triadic palette includes #D5FFEF and #EFD5FF. The name comes from Papaya Whip (English).

  • HEX: #FFEFD5
  • RGB: 255, 239, 213
  • HSL: 37.1°, 100%, 91.8%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #D5E5FF
  • Triadic colors: #D5FFEF, #EFD5FF
  • The name comes from Papaya Whip (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 #FFEFD5 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #F4F4D5
Protanopia #F1F1D5
Tritanopia #FFECEC
Achromatopsia #F1F1F1

Frequently Asked Questions

Papaya Whip (#FFEFD5) is a color with RGB(255, 239, 213) and HSL(37.1°, 100%, 91.8%).

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

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

#FFEFD5 is commonly associated with Playful.

The name Papaya Whip is linked to Papaya Whip from English, meaning A light, pale orange-yellow color, reminiscent of the flesh of a papaya fruit blended into a whipped, creamy texture..

Name, History & Etymology

Origin Word Papaya Whip
Meaning A light, pale orange-yellow color, reminiscent of the flesh of a papaya fruit blended into a whipped, creamy texture.
Language English
First Recorded Use Late 20th Century

History

The concept of 'whip' in color names often refers to a light, airy, and sometimes pastel version of a food item, suggesting a creamy or frothy texture. 'Papaya Whip' combines the tropical fruit 'papaya' with this 'whip' descriptor to create a soft, warm, and inviting hue. Its inclusion in standard digital color sets helped popularize its use in web design, graphic design, and digital art.

First Recorded Use

The specific color name 'Papaya Whip' (and its hexadecimal code #ffefd5) gained prominence with the advent of web colors and standardized color palettes for digital displays. It was notably included in the X11 color names, which were widely adopted for web browsers.

Cultural Associations

The color evokes feelings of warmth, softness, and a subtle tropical or fruity sweetness. It's often used in designs aiming for a gentle, comforting, or slightly vintage aesthetic. It can be seen in interior design for nurseries or bedrooms, in branding for natural or organic products, and in fashion for spring/summer collections.

Similar Named Colors

Champagne #F7E7CE ΔE 1.71
Blanched Almond #FFEBCD ΔE 1.84
Antique White #FAEBD7 ΔE 2.28
Pearl #EAE0C8 ΔE 4.28

Code Snippets

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

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

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

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

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

// SCSS variable
$papaya-whip: #FFEFD5;

// With RGB channels (useful for rgba() usage)
$papaya-whip-r: 255;
$papaya-whip-g: 239;
$papaya-whip-b: 213;

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