Medium Electric Blue

HEX: #035096 | Modern Palette

On White
8.10:1
PASS
On Black
2.59:1
FAIL

Color Specifications

HEX
#035096
RGB
3, 80, 150
HSL
208°, 98% ,58%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Bold
Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #444496
Protanopia #4C4C96
Tritanopia #005D5D
Achromatopsia #505050

Frequently Asked Questions

Medium Electric Blue (#035096) is a color with RGB(3, 80, 150) and HSL(208.57°, 98%, 58.82%).

#035096 pairs strongly with #964903 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#035096 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#035096 is commonly associated with Bold.

The name Medium Electric Blue is linked to Medium Electric Blue from English, meaning A specific shade of blue, characterized by its medium saturation and brightness, and a vibrant, almost glowing quality reminiscent of electrical phenomena..

Name, History & Etymology

Origin Word Medium Electric Blue
Meaning A specific shade of blue, characterized by its medium saturation and brightness, and a vibrant, almost glowing quality reminiscent of electrical phenomena.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

USAFA Blue #004F98 ΔE 0.49
Yale Blue #0F4D92 ΔE 1.34
Cyan Cobalt Blue #28589C ΔE 3.28
B'dazzled Blue #2E5894 ΔE 3.49

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);
}