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