Banana Yellow
HEX: #FFE135 | Modern Palette
Color Specifications
#FFE135
255, 225, 53
51°, 100% ,60%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}