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
Purple #800080 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
Purple #800080 pairs with Office Green (#008000) as its complementary color, and Olive (#808000) and Teal (#008080) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
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.
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);
}