Banana Mania
HEX: #FAE7B5 | Modern Palette
Color Specifications
#FAE7B5
250, 231, 181
43°, 87% ,84%
0, 8, 28, 2
About Banana Mania
Banana Mania (#FAE7B5) is a color with RGB(250, 231, 181) and HSL(43.5°, 87.3%, 84.5%). 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 #B5C8FA, which creates strong contrast. Its triadic palette includes #B5FAE7 and #E7B5FA. The name comes from Banana Mania (English).
- HEX: #FAE7B5
- RGB: 250, 231, 181
- HSL: 43.5°, 87.3%, 84.5%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #B5C8FA
- Triadic colors: #B5FAE7, #E7B5FA
- The name comes from Banana Mania (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 #FAE7B5 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Banana Mania' was introduced by Crayola in 1997 as part of their crayon color palette. It is one of many food-inspired color names Crayola has used over the years to make colors more appealing and relatable to children. The name evokes the bright, cheerful yellow of a ripe banana.
First Recorded Use
1997
Cultural Associations
Crayola colors often become part of a shared cultural lexicon, especially in childhood. 'Banana Mania' is recognized primarily within the context of Crayola crayons and art supplies. It's a playful and descriptive name that clearly communicates the intended shade of yellow.
Code Snippets
/* Background */
.element {
background-color: #FAE7B5;
}
/* Text */
.element {
color: #FAE7B5;
}
/* Border */
.element {
border: 1px solid #FAE7B5;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FAE7B5,
#B5C8FA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FAE7B5,
#B5C8FA
);
}
// SCSS variable
$banana-mania: #FAE7B5;
// With RGB channels (useful for rgba() usage)
$banana-mania-r: 250;
$banana-mania-g: 231;
$banana-mania-b: 181;
// Usage
.element {
background-color: $banana-mania;
color: rgba($banana-mania-r, $banana-mania-g, $banana-mania-b, 0.8);
}