Lemon
HEX: #FFF700 | Modern Palette
Color Specifications
#FFF700
255, 247, 0
58°, 100% ,50%
0, 3, 100, 0
About Lemon
Lemon (#FFF700) is a color with RGB(255, 247, 0) and HSL(58.1°, 100%, 50%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0008FF, which creates strong contrast. Its triadic palette includes #00FFF7 and #F700FF. The name comes from limau (Malay (likely via Arabic and Persian)).
- HEX: #FFF700
- RGB: 255, 247, 0
- HSL: 58.1°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0008FF
- Triadic colors: #00FFF7, #F700FF
- The name comes from limau (Malay (likely via Arabic and Persian)).
Live Components
Color Palettes
Lemon #FFF700 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 #FFF700 pairs with #0008FF as its complementary color, and #00FFF7 and #F700FF 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 word 'lemon' entered English from Old French 'limon', which itself came from Medieval Latin 'limon'. This Latin term is believed to have been borrowed from Arabic 'laymūn' or Persian 'līmūn', ultimately tracing back to the Malay word 'limau'. The fruit itself is native to Asia, likely northeastern India. It was introduced to Europe around the 2nd century AD by the Romans, but large-scale cultivation in Europe began with the Arab conquest of Spain in the 8th century. The color 'lemon' as a descriptor for a pale yellow hue became common much later, likely in the 18th or 19th century, directly referencing the fruit's characteristic color.
First Recorded Use
c. 1350-1450
Cultural Associations
Lemons are widely used in culinary arts globally for their sour juice and aromatic zest. In many cultures, lemons symbolize freshness, cleanliness, and sometimes bitterness or disappointment (e.g., 'when life gives you lemons...'). The color lemon is often associated with spring, cheerfulness, and light, but can also be seen as sharp or acidic. Lemonade is a popular refreshing drink, especially in Western cultures. In some folk remedies, lemons are believed to have medicinal properties.
Code Snippets
/* Background */
.element {
background-color: #FFF700;
}
/* Text */
.element {
color: #FFF700;
}
/* Border */
.element {
border: 1px solid #FFF700;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFF700,
#0008FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFF700,
#0008FF
);
}
// SCSS variable
$lemon: #FFF700;
// With RGB channels (useful for rgba() usage)
$lemon-r: 255;
$lemon-g: 247;
$lemon-b: 0;
// Usage
.element {
background-color: $lemon;
color: rgba($lemon-r, $lemon-g, $lemon-b, 0.8);
}