Lemon Glacier
HEX: #FDFF00 | Modern Palette
Color Specifications
#FDFF00
253, 255, 0
60°, 100% ,100%
0.78, 0, 100, 0
About Lemon Glacier
Lemon Glacier (#FDFF00) is a color with RGB(253, 255, 0) and HSL(60.47°, 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 #0200FF, which creates strong contrast. Its triadic palette includes #00FDFF and #FF00FD. The name comes from Lemon Glacier (English).
- HEX: #FDFF00
- RGB: 253, 255, 0
- HSL: 60.47°, 100%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #0200FF
- Triadic colors: #00FDFF, #FF00FD
- The name comes from Lemon Glacier (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 #FDFF00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Lemon Glacier' is a modern compound color name. 'Lemon' as a color descriptor has been used for centuries to denote a bright yellow. 'Glacier' in color naming often implies a cool, pale, or icy tone, or a smooth, reflective quality. The combination 'Lemon Glacier' likely emerged as a creative descriptor to evoke a specific shade of yellow that is bright like a lemon but perhaps has a slightly cooler undertone or a smooth, almost translucent quality, similar to how 'ice' or 'snow' might modify a color. It's common in digital color palettes and paint names to use such evocative compound names.
First Recorded Use
Likely coined in the context of digital color naming, graphic design, or product branding, rather than having a singular historical 'first use' event.
Cultural Associations
In Western cultures, lemon yellow is often associated with freshness, energy, happiness, and youth. The 'glacier' modifier adds a touch of sophistication, coolness, or perhaps a hint of the natural world (ice, mountains). It might be used in contexts where a vibrant yet not overly aggressive yellow is desired, such as in fashion, interior design, or branding for products aiming for a fresh, clean, and modern aesthetic.
Code Snippets
/* Background */
.element {
background-color: #FDFF00;
}
/* Text */
.element {
color: #FDFF00;
}
/* Border */
.element {
border: 1px solid #FDFF00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FDFF00,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FDFF00,
#FFFFFF
);
}
// SCSS variable
$lemon-glacier: #FDFF00;
// With RGB channels (useful for rgba() usage)
$lemon-glacier-r: 253;
$lemon-glacier-g: 255;
$lemon-glacier-b: 0;
// Usage
.element {
background-color: $lemon-glacier;
color: rgba($lemon-glacier-r, $lemon-glacier-g, $lemon-glacier-b, 0.8);
}