Lime
HEX: #BFFF00 | Modern Palette
Color Specifications
#BFFF00
191, 255, 0
75°, 100% ,50%
25, 0, 100, 0
About Lime
Lime (#BFFF00) is a color with RGB(191, 255, 0) and HSL(75.1°, 100%, 50%). It is commonly associated with Bold moods. In design, it fits Vivid styles and is suitable for Text, Button, Accent. Its complementary color is #4000FF, which creates strong contrast. Its triadic palette includes Deep Sky Blue (#00BFFF) and #FF00BF. The name comes from Lime (English).
- HEX: #BFFF00
- RGB: 191, 255, 0
- HSL: 75.1°, 100%, 50%
- Mood: Bold
- Style: Vivid
- Use case: Text, Button, Accent
- Complementary color: #4000FF
- Triadic colors: Deep Sky Blue (#00BFFF), #FF00BF
- The name comes from 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 #BFFF00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The fruit 'lime' has a long history, originating in Southeast Asia and then spreading through the Middle East and into Europe. It was particularly important for preventing scurvy during long sea voyages. The color 'lime' (or 'lime green') as a named color gained popularity in the mid-20th century, especially in fashion and design, to describe a vivid, yellowish-green hue reminiscent of the fruit's flesh or skin.
First Recorded Use
The word 'lime' itself, referring to the fruit, entered English from Spanish 'lima' or Portuguese 'limão', which in turn came from Arabic 'līmah' and ultimately from Persian 'līmū'. The color 'lime' as a specific descriptor is a much more recent development.
Cultural Associations
Lime green is often associated with freshness, vibrancy, nature, and youth. It can evoke feelings of energy and zest. In some contexts, it has been used to represent environmentalism or a 'green' approach. It was a popular color in the psychedelic art and fashion of the 1960s and 70s, and has seen resurgences in popularity in various design trends.
Code Snippets
/* Background */
.element {
background-color: #BFFF00;
}
/* Text */
.element {
color: #BFFF00;
}
/* Border */
.element {
border: 1px solid #BFFF00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BFFF00,
#4000FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BFFF00,
#4000FF
);
}
// SCSS variable
$lime: #BFFF00;
// With RGB channels (useful for rgba() usage)
$lime-r: 191;
$lime-g: 255;
$lime-b: 0;
// Usage
.element {
background-color: $lime;
color: rgba($lime-r, $lime-g, $lime-b, 0.8);
}