Lemon Glacier

HEX: #FDFF00 | Modern Palette

On White
1.08:1
FAIL
On Black
19.48:1
PASS

Color Specifications

HEX
#FDFF00
RGB
253, 255, 0
HSL
60°, 100% ,100%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #FEFE01
Protanopia #FFFF00
Tritanopia #FFF0F0
Achromatopsia #F6F6F6

Frequently Asked Questions

Lemon Glacier (#FDFF00) is a color with RGB(253, 255, 0) and HSL(60.47°, 100%, 100%).

#FDFF00 pairs strongly with #0200FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FDFF00 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FDFF00 is commonly associated with Playful.

The name Lemon Glacier is linked to Lemon Glacier from English, meaning A descriptive name combining the color 'lemon' (a bright, vivid yellow) with 'glacier' (suggesting a cool, icy, or perhaps a smooth, flowing quality)..

Name, History & Etymology

Origin Word Lemon Glacier
Meaning A descriptive name combining the color 'lemon' (a bright, vivid yellow) with 'glacier' (suggesting a cool, icy, or perhaps a smooth, flowing quality).
Language English
First Recorded Use Late 20th - Early 21st Century

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.

Similar Named Colors

Yellow #FFFF00 ΔE 0.41
Laser Lemon #FEFE22 ΔE 0.75
Daffodil #FFFF31 ΔE 1.25
Electric Yellow #FFFF33 ΔE 1.34

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);
}