Medium Electric Blue
HEX: #035096 | Modern Palette
Color Specifications
#035096
3, 80, 150
208°, 98% ,58%
98, 46.67, 0, 41.18
About Medium Electric Blue
Medium Electric Blue (#035096) is a color with RGB(3, 80, 150) and HSL(208.57°, 98%, 58.82%). It is commonly associated with Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #964903, which creates strong contrast. Its triadic palette includes #960350 and #509603. The name comes from Medium Electric Blue (English).
- HEX: #035096
- RGB: 3, 80, 150
- HSL: 208.57°, 98%, 58.82%
- Mood: Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #964903
- Triadic colors: #960350, #509603
- The name comes from Medium Electric Blue (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 #035096 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'electric blue' was coined to describe the intense, almost fluorescent blue light produced by certain electrical discharges, such as those seen in arc lamps or early neon signs. It quickly became a popular color in fashion and design due to its striking appearance. As color science and digital representation advanced, the need for more precise descriptors led to the addition of modifiers like 'medium,' 'light,' or 'dark' to differentiate specific variations of popular colors. 'Medium Electric Blue' with its hex code #035096 represents a standardized, digitally reproducible version of this vibrant hue.
First Recorded Use
While 'electric blue' as a color term emerged in the late 19th century (around the 1880s) to describe a vivid, brilliant blue, the specific modifier 'medium' to denote a particular shade within the 'electric blue' spectrum likely became more common with the advent of digital color systems and standardized color naming conventions in the latter half of the 20th century. The hex code #035096 itself points to a digital age specification.
Cultural Associations
Electric blue, in general, is often associated with energy, technology, modernity, and sometimes a futuristic aesthetic. It can evoke feelings of excitement, dynamism, and sophistication. In fashion, it's often used to make a bold statement. In branding, it can convey innovation or a high-tech image. The 'medium' aspect suggests a balance – not overly bright to be garish, but still retaining the characteristic vibrancy of electric blue.
Code Snippets
/* Background */
.element {
background-color: #035096;
}
/* Text */
.element {
color: #035096;
}
/* Border */
.element {
border: 1px solid #035096;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#035096,
#FD912F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#035096,
#FD912F
);
}
// SCSS variable
$medium-electric-blue: #035096;
// With RGB channels (useful for rgba() usage)
$medium-electric-blue-r: 3;
$medium-electric-blue-g: 80;
$medium-electric-blue-b: 150;
// Usage
.element {
background-color: $medium-electric-blue;
color: rgba($medium-electric-blue-r, $medium-electric-blue-g, $medium-electric-blue-b, 0.8);
}