Tyrian Purple
HEX: #66023C | Modern Palette
Color Specifications
#66023C
102, 2, 60
325°, 98% ,40%
0, 98.04, 41.18, 60
About Tyrian Purple
Tyrian Purple (#66023C) is a color with RGB(102, 2, 60) and HSL(325.2°, 98.04%, 40%). 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 #02662C, which creates strong contrast. Its triadic palette includes #3C6602 and #023C66. The name comes from πορφύρα (porphúra) (Ancient Greek).
- HEX: #66023C
- RGB: 102, 2, 60
- HSL: 325.2°, 98.04%, 40%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #02662C
- Triadic colors: #3C6602, #023C66
- The name comes from πορφύρα (porphúra) (Ancient Greek).
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 #66023C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Tyrian Purple is a highly prized and ancient dye, famously produced by the Phoenicians in the city of Tyre (modern-day Lebanon). It was extracted from the mucus glands of several species of sea snails, primarily Murex brandaris (now Bolinus brandaris) and Purpura lapillus (now Nucella lapillus). The production process was extremely labor-intensive and required vast numbers of snails, making the dye incredibly expensive. Its cost and vibrant, permanent color made it a symbol of royalty, power, and status throughout the ancient world, particularly in the Roman Empire where its use was often restricted by sumptuary laws to emperors and high-ranking officials. The fall of Constantinople in 1453 is often cited as the end of large-scale Tyrian Purple production, though knowledge of its creation persisted.
First Recorded Use
Circa 1600 BCE
Cultural Associations
Symbol of royalty and imperial power in the Roman and Byzantine Empires. Associated with divinity and high religious office in some ancient cultures. Its rarity and cost made it a luxury item, often more valuable than gold by weight. The color was known for its resistance to fading, becoming brighter with exposure to sunlight and weathering. The term 'born in the purple' referred to children born to reigning Byzantine emperors, emphasizing their legitimate claim to the throne.
Code Snippets
/* Background */
.element {
background-color: #66023C;
}
/* Text */
.element {
color: #66023C;
}
/* Border */
.element {
border: 1px solid #66023C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#66023C,
#02CA56
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#66023C,
#02CA56
);
}
// SCSS variable
$tyrian-purple: #66023C;
// With RGB channels (useful for rgba() usage)
$tyrian-purple-r: 102;
$tyrian-purple-g: 2;
$tyrian-purple-b: 60;
// Usage
.element {
background-color: $tyrian-purple;
color: rgba($tyrian-purple-r, $tyrian-purple-g, $tyrian-purple-b, 0.8);
}