Electric Indigo
HEX: #6F00FF | Modern Palette
Color Specifications
#6F00FF
111, 0, 255
266°, 100% ,100%
56.47, 100, 0, 0
About Electric Indigo
Electric Indigo (#6F00FF) is a color with RGB(111, 0, 255) and HSL(266.12°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #90FF00, which creates strong contrast. Its triadic palette includes #FF6F00 and #00FF6F. The name comes from Electric Indigo (English).
- HEX: #6F00FF
- RGB: 111, 0, 255
- HSL: 266.12°, 100%, 100%
- Mood: Playful
- Style: Neon
- Use case: Text, Button, Background
- Complementary color: #90FF00
- Triadic colors: #FF6F00, #00FF6F
- The name comes from Electric Indigo (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 #6F00FF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#3D3DFF
#2424FF
#2D6464
#5C5C5C
Frequently Asked Questions
Name, History & Etymology
History
Indigo as a color has a long and rich history, derived from the indigo plant and used for dyeing since antiquity in various cultures (India, Egypt, Peru, China). It was one of the original colors of the rainbow identified by Isaac Newton. The 'electric' modifier is a modern addition, used to describe colors that are particularly vibrant, intense, or neon-like, often associated with technology, energy, or a striking visual impact. This specific combination likely gained traction as a descriptive term for a particularly bright or saturated indigo hue.
First Recorded Use
The specific term 'Electric Indigo' as a named color likely emerged with the proliferation of digital color systems and named crayon/paint colors, probably in the latter half of the 20th century. While indigo itself is ancient, the 'electric' modifier is modern.
Cultural Associations
Indigo holds significant cultural meaning across the globe. In some traditions, it's associated with spirituality, intuition, and wisdom (e.g., the third eye chakra in Hinduism). In fashion, it's a classic color, especially in denim. The 'electric' prefix adds a contemporary, energetic, and sometimes futuristic feel, making 'Electric Indigo' a color that can bridge traditional depth with modern vibrancy. It's often seen in digital interfaces, athletic wear, and modern art where a striking, deep blue-purple is desired.
Code Snippets
/* Background */
.element {
background-color: #6F00FF;
}
/* Text */
.element {
color: #6F00FF;
}
/* Border */
.element {
border: 1px solid #6F00FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#6F00FF,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#6F00FF,
#FFFFFF
);
}
// SCSS variable
$electric-indigo: #6F00FF;
// With RGB channels (useful for rgba() usage)
$electric-indigo-r: 111;
$electric-indigo-g: 0;
$electric-indigo-b: 255;
// Usage
.element {
background-color: $electric-indigo;
color: rgba($electric-indigo-r, $electric-indigo-g, $electric-indigo-b, 0.8);
}