Electric Ultramarine
HEX: #3F00FF | Modern Palette
Color Specifications
#3F00FF
63, 0, 255
254°, 100% ,100%
75.29, 100, 0, 0
About Electric Ultramarine
Electric Ultramarine (#3F00FF) is a color with RGB(63, 0, 255) and HSL(254.82°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #C0FF00, which creates strong contrast. Its triadic palette includes #FF3F00 and #00FF3F. The name comes from Electric Ultramarine (English).
- HEX: #3F00FF
- RGB: 63, 0, 255
- HSL: 254.82°, 100%, 100%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #C0FF00
- Triadic colors: #FF3F00, #00FF3F
- The name comes from Electric Ultramarine (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 #3F00FF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Ultramarine itself has a long and rich history, originally derived from lapis lazuli and highly prized for its intense blue. The 'electric' modifier is a more recent addition, reflecting a contemporary aesthetic preference for highly saturated and luminous colors. It distinguishes this particular shade from the more muted or traditional forms of ultramarine. The hexadecimal code #3f00ff is a specific digital representation of such a color, often associated with web colors and digital design.
First Recorded Use
The exact first use is difficult to pinpoint as 'Electric Ultramarine' is more of a descriptive phrase that emerged with the popularization of vibrant, synthetic colors and digital color spaces. It likely gained traction in design, fashion, and art contexts as a way to describe a particularly bright and saturated ultramarine hue, possibly in the late 1990s or early 2000s.
Cultural Associations
This color evokes a sense of modernity, energy, and often a futuristic or digital aesthetic. It's frequently used in branding for technology companies, electronic music album art, and fashion to convey vibrancy and a cutting-edge feel. Its intensity can also be associated with neon lights or glowing effects.
Code Snippets
/* Background */
.element {
background-color: #3F00FF;
}
/* Text */
.element {
color: #3F00FF;
}
/* Border */
.element {
border: 1px solid #3F00FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#3F00FF,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#3F00FF,
#FFFFFF
);
}
// SCSS variable
$electric-ultramarine: #3F00FF;
// With RGB channels (useful for rgba() usage)
$electric-ultramarine-r: 63;
$electric-ultramarine-g: 0;
$electric-ultramarine-b: 255;
// Usage
.element {
background-color: $electric-ultramarine;
color: rgba($electric-ultramarine-r, $electric-ultramarine-g, $electric-ultramarine-b, 0.8);
}