Pearl
HEX: #EAE0C8 | Modern Palette
Color Specifications
#EAE0C8
234, 224, 200
42°, 44% ,85%
0, 4, 15, 8
About Pearl
Pearl (#EAE0C8) is a color with RGB(234, 224, 200) and HSL(42.4°, 44.7%, 85.1%). In design, it fits Warm styles and is suitable for Text, Background, Print. Its complementary color is #C8D2EA, which creates strong contrast. Its triadic palette includes #C8EAE0 and #E0C8EA. The name comes from perna (Latin).
- HEX: #EAE0C8
- RGB: 234, 224, 200
- HSL: 42.4°, 44.7%, 85.1%
- Style: Warm
- Use case: Text, Background, Print
- Complementary color: #C8D2EA
- Triadic colors: #C8EAE0, #E0C8EA
- The name comes from perna (Latin).
Live Components
Color Palettes
Pearl #EAE0C8 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Pearl #EAE0C8 pairs with #C8D2EA as its complementary color, and #C8EAE0 and #E0C8EA in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#E3E3C8
#E1E1C8
#EDDDDD
#E1E1E1
Frequently Asked Questions
Name, History & Etymology
History
The word 'pearl' entered English from Old French 'perle', which itself derived from Latin 'perna'. Initially, 'perna' referred to a type of mussel or bivalve. Over time, the focus shifted from the shell to the precious gem found within. Pearls have been valued for millennia, with evidence of their use dating back to ancient civilizations in India, China, and Egypt. They were often associated with royalty and divinity. The natural formation of pearls within oysters or mussels made them rare and highly sought after. The advent of cultured pearls in the early 20th century by Kokichi Mikimoto revolutionized the pearl industry, making them more accessible.
First Recorded Use
13th Century
Cultural Associations
Pearls are often associated with purity, innocence, and modesty. They are a traditional birthstone for June and are frequently used in bridal jewelry. In many cultures, pearls symbolize wisdom gained through experience. Historically, they were believed to bring good luck and protection. Different cultures have various myths and legends surrounding pearls, often linking them to tears, moonlight, or dewdrops. The phrase 'pearls of wisdom' refers to valuable advice or insights. The color 'pearl' (#eae0c8) evokes the soft, iridescent sheen of a natural pearl.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #EAE0C8;
}
/* Text */
.element {
color: #EAE0C8;
}
/* Border */
.element {
border: 1px solid #EAE0C8;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EAE0C8,
#C8D2EA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EAE0C8,
#C8D2EA
);
}
// SCSS variable
$pearl: #EAE0C8;
// With RGB channels (useful for rgba() usage)
$pearl-r: 234;
$pearl-g: 224;
$pearl-b: 200;
// Usage
.element {
background-color: $pearl;
color: rgba($pearl-r, $pearl-g, $pearl-b, 0.8);
}