Rich Electric Blue

HEX: #0892D0 | Modern Palette

On White
3.48:1
FAIL
On Black
6.03:1
PASS

Color Specifications

HEX
#0892D0
RGB
8, 146, 208
HSL
198°, 96% ,81%
CMYK
96.15, 29.81, 0, 18.43

About Rich Electric Blue

Rich Electric Blue (#0892D0) is a color with RGB(8, 146, 208) and HSL(198.6°, 96.15%, 81.57%). 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 #D04608, which creates strong contrast. Its triadic palette includes #D00892 and #92D008. The name comes from Rich Electric Blue (English).

  • HEX: #0892D0
  • RGB: 8, 146, 208
  • HSL: 198.6°, 96.15%, 81.57%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #D04608
  • Triadic colors: #D00892, #92D008
  • The name comes from Rich 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 #0892D0 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #7D7DD1
Protanopia #8B8BD0
Tritanopia #009C9C
Achromatopsia #898989

Frequently Asked Questions

Rich Electric Blue (#0892D0) is a color with RGB(8, 146, 208) and HSL(198.6°, 96.15%, 81.57%).

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

#0892D0 is suitable for Text, Button, Background and works well with Neon, Cool styles.

#0892D0 is commonly associated with Playful.

The name Rich Electric Blue is linked to Rich Electric Blue from English, meaning A vivid, saturated shade of blue, reminiscent of the bright blue often associated with electrical sparks or neon signs, with 'rich' emphasizing its depth and intensity..

Name, History & Etymology

Origin Word Rich Electric Blue
Meaning A vivid, saturated shade of blue, reminiscent of the bright blue often associated with electrical sparks or neon signs, with 'rich' emphasizing its depth and intensity.
Language English
First Recorded Use Early 20th Century

History

The concept of 'electric blue' gained popularity as electricity became more commonplace and its visual effects (like the blue glow of an arc lamp or spark) became familiar. It quickly became a fashionable color in textiles and art. Adding 'rich' to the 'electric blue' further refines the description, indicating a less muted, more intense, and luxurious version of the color. This specific hex code (#0892d0) represents a very strong and pure manifestation of this concept.

First Recorded Use

The term 'electric blue' emerged in the late 19th to early 20th century, coinciding with the rise of electricity and its visual manifestations (sparks, arcs). The 'rich' descriptor would have been added to differentiate particularly deep and vibrant versions of this color.

Cultural Associations

Electric blue, and by extension 'Rich Electric Blue', is often associated with modernity, technology, energy, and vibrancy. It can evoke feelings of excitement, sophistication, and sometimes a futuristic aesthetic. It's a popular color in fashion, digital interfaces, and branding for companies wanting to convey innovation or dynamism.

Similar Named Colors

Cyan Cornflower Blue #188BC2 ΔE 2.68
Celestial Blue #4997D0 ΔE 3.88
Blue (NCS) #0087BD ΔE 4.24
Carolina Blue #56A0D3 ΔE 5.98

Code Snippets

/* Background */
.element {
    background-color: #0892D0;
}

/* Text */
.element {
    color: #0892D0;
}

/* Border */
.element {
    border: 1px solid #0892D0;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #0892D0,
        #FDBFA3
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #0892D0,
        #FDBFA3
    );
}

// SCSS variable
$rich-electric-blue: #0892D0;

// With RGB channels (useful for rgba() usage)
$rich-electric-blue-r: 8;
$rich-electric-blue-g: 146;
$rich-electric-blue-b: 208;

// Usage
.element {
    background-color: $rich-electric-blue;
    color: rgba($rich-electric-blue-r, $rich-electric-blue-g, $rich-electric-blue-b, 0.8);
}