Lemon Meringue

HEX: #F6EABE | Modern Palette

On White
1.20:1
FAIL
On Black
17.43:1
PASS

Color Specifications

HEX
#F6EABE
RGB
246, 234, 190
HSL
47°, 22% ,96%
CMYK
0, 4.88, 22.76, 3.53

About Lemon Meringue

Lemon Meringue (#F6EABE) is a color with RGB(246, 234, 190) and HSL(47.14°, 22.76%, 96.47%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #BECAF6, which creates strong contrast. Its triadic palette includes #BEF6EA and #EABEF6. The name comes from Lemon Meringue (English).

  • HEX: #F6EABE
  • RGB: 246, 234, 190
  • HSL: 47.14°, 22.76%, 96.47%
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #BECAF6
  • Triadic colors: #BEF6EA, #EABEF6
  • The name comes from Lemon Meringue (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 #F6EABE from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #EEEEBE
Protanopia #EBEBBE
Tritanopia #FBE5E5
Achromatopsia #EAEAEA

Frequently Asked Questions

Lemon Meringue (#F6EABE) is a color with RGB(246, 234, 190) and HSL(47.14°, 22.76%, 96.47%).

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

#F6EABE is suitable for Text, Background, Print and works well with Pastel, Warm styles.

The name Lemon Meringue is linked to Lemon Meringue from English, meaning A dessert consisting of a lemon custard filling topped with a meringue (a mixture of whipped egg whites and sugar)..

Name, History & Etymology

Origin Word Lemon Meringue
Meaning A dessert consisting of a lemon custard filling topped with a meringue (a mixture of whipped egg whites and sugar).
Language English
First Recorded Use 19th Century

History

Meringue, a confection made from whipped egg whites and sugar, has a history dating back to at least the 17th century, with claims of its origin in Switzerland (by a pastry chef named Gasparini in Meiringen) or Germany. Lemon tarts and custards have been popular desserts for centuries. The specific combination of a lemon custard base with a meringue topping, creating 'Lemon Meringue Pie,' gained significant popularity in the United States during the 19th century. Early American cookbooks, such as Eliza Leslie's 'Directions for Cookery' (1847), featured recipes for lemon pie with meringue. The color 'Lemon Meringue' (#f6eabe) evokes the pale, creamy yellow of the dessert's filling, often with a hint of the browned meringue peaks.

First Recorded Use

The exact first use of the combined term 'lemon meringue' is difficult to pinpoint, but recipes for lemon tarts and meringue toppings existed separately before being combined. Meringue itself is believed to have originated in Switzerland or Germany in the 17th or 18th century. Lemon tarts have a long history. The combination likely became popular in the 19th century, with early published recipes appearing around the mid-1800s.

Cultural Associations

Lemon Meringue Pie is a classic and beloved dessert, particularly in American cuisine, often associated with home baking, comfort food, and special occasions. Its bright, tangy flavor combined with the sweet, airy meringue makes it a popular choice. The color 'Lemon Meringue' reflects this culinary association, bringing to mind a light, sweet, and slightly tart feeling. It's a color often used in contexts that aim for a soft, cheerful, or vintage aesthetic.

Similar Named Colors

Blond #FAF0BE ΔE 2.05
Banana Mania #FAE7B5 ΔE 2.61
Vanilla #F3E5AB ΔE 3.50
Dutch White #EFDFBB ΔE 3.70

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F6EABE,
        #F4F5F8
    );
}

// SCSS variable
$lemon-meringue: #F6EABE;

// With RGB channels (useful for rgba() usage)
$lemon-meringue-r: 246;
$lemon-meringue-g: 234;
$lemon-meringue-b: 190;

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