Eggshell
HEX: #F0EAD6 | Modern Palette
Color Specifications
#F0EAD6
240, 234, 214
46°, 46% ,89%
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
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 #F0EAD6 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#ECECD6
#EBEBD6
#F2E8E8
#EAEAEA
Frequently Asked Questions
Name, History & Etymology
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.
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);
}