Lemon Yellow

HEX: #FFF44F | Modern Palette

On White
1.15:1
FAIL
On Black
18.31:1
PASS

Color Specifications

HEX
#FFF44F
RGB
255, 244, 79
HSL
56°, 100% ,65%
CMYK
0, 4, 69, 0

About Lemon Yellow

Lemon Yellow (#FFF44F) is a color with RGB(255, 244, 79) and HSL(56.3°, 100%, 65.5%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #4F5AFF, which creates strong contrast. Its triadic palette includes #4FFFF4 and #F44FFF. The name comes from Lemon Yellow (English).

  • HEX: #FFF44F
  • RGB: 255, 244, 79
  • HSL: 56.3°, 100%, 65.5%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #4F5AFF
  • Triadic colors: #4FFFF4, #F44FFF
  • The name comes from Lemon Yellow (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 #FFF44F from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #F7F74E
Protanopia #F5F54F
Tritanopia #FFE7E7
Achromatopsia #EFEFEF

Frequently Asked Questions

Lemon Yellow (#FFF44F) is a color with RGB(255, 244, 79) and HSL(56.3°, 100%, 65.5%).

#FFF44F pairs strongly with #4F5AFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FFF44F is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FFF44F is commonly associated with Energetic, Bold.

The name Lemon Yellow is linked to Lemon Yellow from English, meaning A vivid, light yellow color resembling that of a ripe lemon..

Name, History & Etymology

Origin Word Lemon Yellow
Meaning A vivid, light yellow color resembling that of a ripe lemon.
Language English
First Recorded Use Late 18th Century

History

The color 'lemon yellow' gained prominence with the development of new synthetic pigments in the 19th century that could accurately reproduce its bright, slightly greenish-yellow hue. Before this, natural pigments often produced more ochre or golden yellows. The association with lemons, a fruit known for its bright color and tartness, made 'lemon yellow' a popular and easily understood color descriptor. It has been widely used in art, fashion, and design to evoke feelings of freshness, energy, and optimism.

First Recorded Use

The specific compound term 'lemon yellow' for a color is documented from the late 18th century, though 'lemon' as a descriptor for yellow shades likely existed earlier. Early chemical pigments like 'Naples Yellow' or 'Chrome Yellow' were sometimes described as lemon-like.

Cultural Associations

Lemon yellow is often associated with spring and summer, youth, happiness, and cheerfulness. In some cultures, yellow can also symbolize jealousy or caution, but 'lemon yellow' specifically tends to carry more positive connotations due to its brightness and association with the refreshing fruit. It's a common color in children's toys and clothing, and frequently appears in branding for products related to citrus, cleaning, or energy.

Similar Named Colors

Icterine #FCF75E ΔE 1.91
Corn #FBEC5D ΔE 2.52
Cadmium Yellow #FFF600 ΔE 3.37
Lemon #FFF700 ΔE 3.43

Code Snippets

/* Background */
.element {
    background-color: #FFF44F;
}

/* Text */
.element {
    color: #FFF44F;
}

/* Border */
.element {
    border: 1px solid #FFF44F;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FFF44F,
        #4F5AFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFF44F,
        #4F5AFF
    );
}

// SCSS variable
$lemon-yellow: #FFF44F;

// With RGB channels (useful for rgba() usage)
$lemon-yellow-r: 255;
$lemon-yellow-g: 244;
$lemon-yellow-b: 79;

// Usage
.element {
    background-color: $lemon-yellow;
    color: rgba($lemon-yellow-r, $lemon-yellow-g, $lemon-yellow-b, 0.8);
}