Electric Purple
HEX: #BF00FF | Modern Palette
Color Specifications
#BF00FF
191, 0, 255
284°, 100% ,50%
25, 100, 0, 0
About Electric Purple
Electric Purple (#BF00FF) is a color with RGB(191, 0, 255) and HSL(284.9°, 100%, 50%). It is commonly associated with Bold, Romantic moods. In design, it fits Vivid styles and is suitable for Text, Button, Accent. Its complementary color is #40FF00, which creates strong contrast. Its triadic palette includes Amber (#FFBF00) and #00FFBF. The name comes from Electric Purple (English).
- HEX: #BF00FF
- RGB: 191, 0, 255
- HSL: 284.9°, 100%, 50%
- Mood: Bold, Romantic
- Style: Vivid
- Use case: Text, Button, Accent
- Complementary color: #40FF00
- Triadic colors: Amber (#FFBF00), #00FFBF
- The name comes from Electric Purple (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 #BF00FF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'electric' colors gained traction as technology advanced, allowing for brighter, more saturated pigments and lighting. Purple itself has a long history, often associated with royalty and luxury due to the rarity of its dyes. 'Electric Purple' takes this traditional color and injects it with a modern, high-energy feel, moving away from the muted, natural purples to something more artificial and striking. It's a color that speaks to synthetic materials, digital displays, and a vibrant, often rebellious aesthetic.
First Recorded Use
The exact first use is difficult to pinpoint, but the term 'electric' to describe intense colors became popular in the mid-to-late 20th century, particularly with the rise of neon lights and synthetic dyes. 'Electric Purple' likely emerged as a descriptive term in the 1980s or 1990s.
Cultural Associations
Electric Purple is frequently seen in fashion, particularly in subcultures like punk, goth, and rave, where its intensity can convey individuality and non-conformity. It's also popular in digital art, graphic design, and branding for products aiming for a modern, energetic, or futuristic appeal. Its brightness can evoke feelings of excitement, creativity, and even a touch of the surreal or fantastical. It's a color that stands out and demands attention.
Code Snippets
/* Background */
.element {
background-color: #BF00FF;
}
/* Text */
.element {
color: #BF00FF;
}
/* Border */
.element {
border: 1px solid #BF00FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BF00FF,
#40FF00
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BF00FF,
#40FF00
);
}
// SCSS variable
$electric-purple: #BF00FF;
// With RGB channels (useful for rgba() usage)
$electric-purple-r: 191;
$electric-purple-g: 0;
$electric-purple-b: 255;
// Usage
.element {
background-color: $electric-purple;
color: rgba($electric-purple-r, $electric-purple-g, $electric-purple-b, 0.8);
}