Dark Electric Blue
HEX: #536878 | Modern Palette
Color Specifications
#536878
83, 104, 120
205°, 30% ,47%
30.83, 13.33, 0, 52.94
About Dark Electric Blue
Dark Electric Blue (#536878) is a color with RGB(83, 104, 120) and HSL(205.95°, 30.83%, 47.06%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Print. Its complementary color is #786353, which creates strong contrast. Its triadic palette includes #785368 and #687853. The name comes from Dark Electric Blue (English).
- HEX: #536878
- RGB: 83, 104, 120
- HSL: 205.95°, 30.83%, 47.06%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Print
- Complementary color: #786353
- Triadic colors: #785368, #687853
- The name comes from Dark 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 #536878 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'electric blue' was coined to describe a bright, vivid blue, often compared to the color of an electric spark or arc. As color palettes expanded and the need for more descriptive names arose, modifiers like 'dark' were added to specify variations. 'Dark Electric Blue' specifically refers to a deeper, less saturated version of the original 'electric blue,' moving it away from a neon quality towards a more sophisticated, subdued tone. Its hexadecimal code #536878 further solidifies its identity within digital color standards.
First Recorded Use
While 'electric blue' emerged earlier (mid-20th century) to describe a vibrant, almost neon blue, the 'dark electric blue' variant, often associated with web colors and digital palettes, gained prominence in the late 20th century as more nuanced color naming became common, especially with the advent of widespread digital design and color specification systems.
Cultural Associations
This color often evokes feelings of sophistication, mystery, and tranquility. It's commonly used in corporate branding for technology companies, luxury goods, and fashion due to its modern and elegant appeal. In interior design, it can create a calming yet dramatic atmosphere. It's also a popular choice in digital art and UI/UX design for its readability and aesthetic versatility.
Code Snippets
/* Background */
.element {
background-color: #536878;
}
/* Text */
.element {
color: #536878;
}
/* Border */
.element {
border: 1px solid #536878;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#536878,
#9D7353
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#536878,
#9D7353
);
}
// SCSS variable
$dark-electric-blue: #536878;
// With RGB channels (useful for rgba() usage)
$dark-electric-blue-r: 83;
$dark-electric-blue-g: 104;
$dark-electric-blue-b: 120;
// Usage
.element {
background-color: $dark-electric-blue;
color: rgba($dark-electric-blue-r, $dark-electric-blue-g, $dark-electric-blue-b, 0.8);
}