Peridot
HEX: #E6E200 | Modern Palette
Color Specifications
#E6E200
230, 226, 0
59°, 100% ,45%
0, 2, 100, 10
About Peridot
Peridot (#E6E200) is a color with RGB(230, 226, 0) and HSL(59°, 100%, 45.1%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0004E6, which creates strong contrast. Its triadic palette includes #00E6E2 and #E200E6. The name comes from péridot (French).
- HEX: #E6E200
- RGB: 230, 226, 0
- HSL: 59°, 100%, 45.1%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0004E6
- Triadic colors: #00E6E2, #E200E6
- The name comes from péridot (French).
Live Components
Color Palettes
Peridot #E6E200 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
Peridot #E6E200 pairs with #0004E6 as its complementary color, and #00E6E2 and #E200E6 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The name 'peridot' for the gemstone is believed to have entered English from French in the late Middle Ages. The stone itself has a much longer history, being known and mined for thousands of years, particularly on St. John's Island (now Zabargad Island) in the Red Sea. Ancient Egyptians called it the 'gem of the sun' and believed it protected against night terrors. It was often confused with emeralds and other green stones throughout history. Some historians believe Cleopatra's famous emeralds were actually peridots. It gained popularity in Europe after the Crusades, when knights brought specimens back from the Middle East. The largest faceted peridot is 310 carats and is housed in the Smithsonian Museum.
First Recorded Use
13th century (as 'peridot' in French)
Cultural Associations
Birthstone for August. Associated with strength, protection, and good fortune. Believed to ward off evil spirits and nightmares. Often used in jewelry, particularly rings, necklaces, and earrings. Has been found in meteorites, specifically pallasite meteorites.
Code Snippets
/* Background */
.element {
background-color: #E6E200;
}
/* Text */
.element {
color: #E6E200;
}
/* Border */
.element {
border: 1px solid #E6E200;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E6E200,
#0004E6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E6E200,
#0004E6
);
}
// SCSS variable
$peridot: #E6E200;
// With RGB channels (useful for rgba() usage)
$peridot-r: 230;
$peridot-g: 226;
$peridot-b: 0;
// Usage
.element {
background-color: $peridot;
color: rgba($peridot-r, $peridot-g, $peridot-b, 0.8);
}