Midnight Blue
HEX: #191970 | Modern Palette
Color Specifications
#191970
25, 25, 112
240°, 77% ,43%
77.68, 77.68, 0, 56.08
About Midnight Blue
Midnight Blue (#191970) is a color with RGB(25, 25, 112) and HSL(240°, 77.68%, 43.92%). In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #707019, which creates strong contrast. Its triadic palette includes #701919 and #197019. The name comes from Midnight Blue (English).
- HEX: #191970
- RGB: 25, 25, 112
- HSL: 240°, 77.68%, 43.92%
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #707019
- Triadic colors: #701919, #197019
- The name comes from Midnight 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 #191970 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'blue' has ancient roots, with various cultures having different words and perceptions for it. The specific shade 'midnight blue' gained prominence as artificial dyes became more sophisticated and widely available. It was often seen as a sophisticated alternative to black, especially in formal wear and uniforms, as it could appear black in low light but reveal its blue hue in brighter conditions. Its association with the night sky gives it connotations of depth, mystery, and elegance.
First Recorded Use
The term 'midnight blue' as a specific color name began to appear in fashion and textile industries around the late 19th century. While dark blues have existed forever, the specific naming convention became popular then.
Cultural Associations
Midnight blue is widely used in fashion, interior design, and branding. It is often associated with professionalism, trustworthiness, and sophistication. In many Western cultures, it's considered a classic and versatile color. It's a popular choice for business suits, evening wear, and luxury items. Its name evokes the serene and deep expanse of the night sky, often without the starkness of pure black.
Code Snippets
/* Background */
.element {
background-color: #191970;
}
/* Text */
.element {
color: #191970;
}
/* Border */
.element {
border: 1px solid #191970;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#191970,
#C7C719
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#191970,
#C7C719
);
}
// SCSS variable
$midnight-blue: #191970;
// With RGB channels (useful for rgba() usage)
$midnight-blue-r: 25;
$midnight-blue-g: 25;
$midnight-blue-b: 112;
// Usage
.element {
background-color: $midnight-blue;
color: rgba($midnight-blue-r, $midnight-blue-g, $midnight-blue-b, 0.8);
}