Banana Yellow

HEX: #FFE135 | Modern Palette

On White
1.31:1
FAIL
On Black
16.07:1
PASS

Color Specifications

HEX
#FFE135
RGB
255, 225, 53
HSL
51°, 100% ,60%
CMYK
0, 12, 79, 0

About Banana Yellow

Banana Yellow (#FFE135) is a color with RGB(255, 225, 53) and HSL(51.1°, 100%, 60.4%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #3553FF, which creates strong contrast. Its triadic palette includes #35FFE1 and #E135FF. The name comes from Banana Yellow (English).

  • HEX: #FFE135
  • RGB: 255, 225, 53
  • HSL: 51.1°, 100%, 60.4%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #3553FF
  • Triadic colors: #35FFE1, #E135FF
  • The name comes from Banana Yellow (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 #FFE135 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #EAEA31
Protanopia #E5E536
Tritanopia #FFD5D5
Achromatopsia #E1E1E1

Frequently Asked Questions

Banana Yellow (#FFE135) is a color with RGB(255, 225, 53) and HSL(51.1°, 100%, 60.4%).

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

#FFE135 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FFE135 is commonly associated with Energetic, Bold.

The name Banana Yellow is linked to Banana Yellow from English, meaning A bright, pale yellow color, resembling the skin of a ripe banana..

Name, History & Etymology

Origin Word Banana Yellow
Meaning A bright, pale yellow color, resembling the skin of a ripe banana.
Language English
First Recorded Use Early 20th Century

History

The color yellow has a long and varied history, often associated with sunlight, gold, and joy, but also with cowardice or illness in different contexts. 'Banana Yellow' specifically leverages the universally recognized color of a ripe banana. As bananas became a common fruit globally, their distinctive yellow hue provided an accessible and easily understood reference point for a particular shade of yellow. Its use gained traction as a practical descriptor in commercial and artistic fields to differentiate it from other yellows like 'lemon yellow' or 'ochre yellow'.

First Recorded Use

The exact first documented use of 'Banana Yellow' as a specific color name is difficult to pinpoint precisely, but its common usage as a descriptive color term likely emerged in the early 20th century as color standardization and naming became more prevalent in industries like fashion, paint, and textiles. The fruit itself became widely available and recognized in Western cultures in the late 19th and early 20th centuries, paving the way for its color to be used as a descriptor.

Cultural Associations

In Western cultures, 'Banana Yellow' evokes feelings of ripeness, sweetness, and tropical warmth. It's often associated with playful, cheerful, and energetic themes. It's a popular color in children's products, summer fashion, and food branding. Due to its association with the fruit, it can also subtly suggest health and naturalness. The color is generally perceived positively, representing brightness and optimism.

Similar Named Colors

Yellow (Pantone) #FEDF00 ΔE 1.75
Golden Yellow #FFDF00 ΔE 1.78
Vivid Yellow #FFE302 ΔE 1.96
School Bus Yellow #FFD800 ΔE 3.03

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFE135,
        #3553FF
    );
}

// SCSS variable
$banana-yellow: #FFE135;

// With RGB channels (useful for rgba() usage)
$banana-yellow-r: 255;
$banana-yellow-g: 225;
$banana-yellow-b: 53;

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