Purple
HEX: #800080 | Modern Palette
Color Specifications
#800080
128, 0, 128
300°, 100% ,50%
0, 100, 0, 49.8
About Purple
Purple (#800080) is a color with RGB(128, 0, 128) and HSL(300°, 100%, 50.2%). 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 Office Green (#008000), which creates strong contrast. Its triadic palette includes Olive (#808000) and Teal (#008080). The name comes from purpul (Old English).
- HEX: #800080
- RGB: 128, 0, 128
- HSL: 300°, 100%, 50.2%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: Office Green (#008000)
- Triadic colors: Olive (#808000), Teal (#008080)
- The name comes from purpul (Old 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 #800080 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Tyrian purple, a highly prized dye, was produced in antiquity from murex snails, making it extremely expensive and a symbol of royalty and power. Its use was often restricted by law to emperors and high-ranking officials in Roman and Byzantine empires. The color's association with luxury persisted through the Middle Ages and Renaissance, influencing ecclesiastical vestments and noble attire. Synthetic dyes in the 19th century made purple more accessible, democratizing its use in fashion and art.
First Recorded Use
The word 'purple' entered English around the 10th century, evolving from earlier forms like 'purpul' and 'purpure'. Its usage initially referred to the specific dye and later expanded to the color itself.
Cultural Associations
Purple symbolizes royalty, wealth, and power across many cultures due to the historical cost of its dye. It is also associated with spirituality, magic, and creativity, often appearing in religious contexts and artistic expressions. In some Western cultures, it can represent mourning or penitence, particularly in liturgical settings.
Code Snippets
/* Background */
.element {
background-color: #800080;
}
/* Text */
.element {
color: #800080;
}
/* Border */
.element {
border: 1px solid #800080;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#800080,
#01FF01
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#800080,
#01FF01
);
}
// SCSS variable
$purple: #800080;
// With RGB channels (useful for rgba() usage)
$purple-r: 128;
$purple-g: 0;
$purple-b: 128;
// Usage
.element {
background-color: $purple;
color: rgba($purple-r, $purple-g, $purple-b, 0.8);
}