Eggshell

HEX: #F0EAD6 | Modern Palette

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

Color Specifications

HEX
#F0EAD6
RGB
240, 234, 214
HSL
46°, 46% ,89%
CMYK
0, 3, 11, 6

About Eggshell

Eggshell (#F0EAD6) is a color with RGB(240, 234, 214) and HSL(46.2°, 46.4%, 89%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #D6DCF0, which creates strong contrast. Its triadic palette includes #D6F0EA and #EAD6F0. The name comes from Eggshell (English).

  • HEX: #F0EAD6
  • RGB: 240, 234, 214
  • HSL: 46.2°, 46.4%, 89%
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #D6DCF0
  • Triadic colors: #D6F0EA, #EAD6F0
  • The name comes from Eggshell (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 #F0EAD6 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm

Accessibility Simulation

Deuteranopia #ECECD6
Protanopia #EBEBD6
Tritanopia #F2E8E8
Achromatopsia #EAEAEA

Frequently Asked Questions

Eggshell (#F0EAD6) is a color with RGB(240, 234, 214) and HSL(46.2°, 46.4%, 89%).

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

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

The name Eggshell is linked to Eggshell from English, meaning The hard outer covering of an egg..

Name, History & Etymology

Origin Word Eggshell
Meaning The hard outer covering of an egg.
Language English
First Recorded Use Late Middle English

History

The word 'eggshell' is a compound word formed from 'egg' and 'shell'. 'Egg' comes from Old Norse 'egg' and 'shell' from Old English 'sciell'. The color 'eggshell' (#f0ead6) is a very pale, off-white color that resembles the natural color of a chicken's eggshell. It gained popularity as a descriptive color name in the 20th century, particularly in interior design and fashion, for its soft, neutral, and slightly warm quality, making it a more nuanced alternative to pure white.

First Recorded Use

14th Century

Cultural Associations

Eggshell as a color is often associated with subtlety, naturalness, and a sense of calm. In interior design, it's frequently used to create bright yet inviting spaces, offering a softer backdrop than stark white. It can evoke feelings of comfort and understated elegance. The term 'eggshell finish' also refers to a paint sheen that is low-luster, resembling the slight sheen of an actual eggshell, providing durability with a soft appearance.

Similar Named Colors

Pearl #EAE0C8 ΔE 2.88
Cosmic Latte #FFF8E7 ΔE 3.33
Old Lace #FDF5E6 ΔE 3.52
Cornsilk #FFF8DC ΔE 3.87

Code Snippets

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

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

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

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

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

// SCSS variable
$eggshell: #F0EAD6;

// With RGB channels (useful for rgba() usage)
$eggshell-r: 240;
$eggshell-g: 234;
$eggshell-b: 214;

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