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
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 #E3FF00 from deepest shade to lightest tint.
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);
}