Rich Electric Blue
HEX: #0892D0 | Modern Palette
Color Specifications
#0892D0
8, 146, 208
198°, 96% ,81%
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
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 #0892D0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}