Lemon Lime
HEX: #E3FF00 | Modern Palette
Color Specifications
#E3FF00
227, 255, 0
66°, 100% ,100%
10.98, 0, 100, 0
About Lemon Lime
Lemon Lime (#E3FF00) is a color with RGB(227, 255, 0) and HSL(66.59°, 100%, 100%). 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 #1C00FF, which creates strong contrast. Its triadic palette includes #00E3FF and #FF00E3. The name comes from Lemon Lime (English).
- HEX: #E3FF00
- RGB: 227, 255, 0
- HSL: 66.59°, 100%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #1C00FF
- Triadic colors: #00E3FF, #FF00E3
- The name comes from Lemon Lime (English).
Live Components
Color Palettes
Lemon Lime #E3FF00 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Lemon Lime #E3FF00 pairs with #1C00FF as its complementary color, and #00E3FF and #FF00E3 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The individual fruits, lemon and lime, have long histories of cultivation and use across various cultures for culinary, medicinal, and aromatic purposes. The pairing of their flavors, often for a tart and refreshing taste, became a popular combination in Western food and beverage industries. The color 'Lemon Lime' (#e3ff00) specifically refers to a bright, yellowish-green hue that evokes the vibrant appearance of both fruits, particularly when their zest or juice is combined. This color gained popularity in fashion, design, and branding, especially in eras that favored bright and energetic palettes.
First Recorded Use
The exact first use of 'Lemon Lime' as a compound term is difficult to pinpoint, but its widespread use in beverages and candies became prominent in the mid to late 20th century, particularly with the rise of carbonated soft drinks featuring this flavor profile.
Cultural Associations
The 'Lemon Lime' flavor is iconic in the soft drink industry, with brands like Sprite and 7 Up being globally recognized. It's associated with refreshment, summer, and a zesty, clean taste. As a color, it often conveys vibrancy, youthfulness, and a modern aesthetic. It can be seen in athletic wear, casual fashion, and sometimes in interior design for a pop of energetic color.
Code Snippets
/* Background */
.element {
background-color: #E3FF00;
}
/* Text */
.element {
color: #E3FF00;
}
/* Border */
.element {
border: 1px solid #E3FF00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E3FF00,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E3FF00,
#FFFFFF
);
}
// SCSS variable
$lemon-lime: #E3FF00;
// With RGB channels (useful for rgba() usage)
$lemon-lime-r: 227;
$lemon-lime-g: 255;
$lemon-lime-b: 0;
// Usage
.element {
background-color: $lemon-lime;
color: rgba($lemon-lime-r, $lemon-lime-g, $lemon-lime-b, 0.8);
}