Pearl

HEX: #EAE0C8 | Modern Palette

On White
1.31:1
FAIL
On Black
15.99:1
PASS

Color Specifications

HEX
#EAE0C8
RGB
234, 224, 200
HSL
42°, 44% ,85%
CMYK
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

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 #EAE0C8 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #E3E3C8
Protanopia #E1E1C8
Tritanopia #EDDDDD
Achromatopsia #E1E1E1

Frequently Asked Questions

Pearl (#EAE0C8) is a color with RGB(234, 224, 200) and HSL(42.4°, 44.7%, 85.1%).

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

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

The name Pearl is linked to perna from Latin, meaning leg (referring to the ham- or leg-of-mutton shape of the bivalve shell from which pearls were harvested).

Name, History & Etymology

Origin Word perna
Meaning leg (referring to the ham- or leg-of-mutton shape of the bivalve shell from which pearls were harvested)
Language Latin
First Recorded Use Middle English

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

Bone #E3DAC9 ΔE 2.85
Eggshell #F0EAD6 ΔE 2.88
Champagne #F7E7CE ΔE 3.18
Dutch White #EFDFBB ΔE 3.89

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);
}