Vista Blue
HEX: #7C9ED9 | Modern Palette
Color Specifications
#7C9ED9
124, 158, 217
218°, 42% ,85%
42.86, 27.19, 0, 14.9
About Vista Blue
Vista Blue (#7C9ED9) is a color with RGB(124, 158, 217) and HSL(218.06°, 42.86%, 85.1%). In design, it fits Cool styles and is suitable for Text, Background, Print. Its complementary color is #D9B77C, which creates strong contrast. Its triadic palette includes #D97C9E and #9ED97C. The name comes from Vista Blue (English).
- HEX: #7C9ED9
- RGB: 124, 158, 217
- HSL: 218.06°, 42.86%, 85.1%
- Style: Cool
- Use case: Text, Background, Print
- Complementary color: #D9B77C
- Triadic colors: #D97C9E, #9ED97C
- The name comes from Vista 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 #7C9ED9 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#9595D9
#9B9BD9
#6EA7A7
#9D9D9D
Frequently Asked Questions
Name, History & Etymology
History
The term 'vista' comes from Italian, meaning 'view' or 'sight,' and entered English in the 17th century. 'Blue' is one of the oldest color terms, with roots in Proto-Indo-European. The combination 'Vista Blue' evokes a sense of open spaces, clear skies, or distant horizons, often associated with tranquility and expansiveness. It gained particular prominence as a color option for vehicles, notably Ford Mustangs in the late 1990s and early 2000s, which helped popularize the specific shade and name.
First Recorded Use
The specific color name 'Vista Blue' likely emerged with the proliferation of digital color palettes and standardized color naming conventions, particularly in the automotive and design industries. While 'vista' and 'blue' have ancient origins, their combination as a specific color name is more modern.
Cultural Associations
In Western cultures, blue is often associated with calmness, stability, wisdom, and reliability. The 'vista' component adds a layer of aspiration, freedom, and natural beauty. The specific shade #7c9ed9 is a medium, somewhat muted blue, which can be perceived as sophisticated and serene. Its use in automotive design often aimed to convey a sense of sportiness combined with elegance.
Code Snippets
/* Background */
.element {
background-color: #7C9ED9;
}
/* Text */
.element {
color: #7C9ED9;
}
/* Border */
.element {
border: 1px solid #7C9ED9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#7C9ED9,
#E9DDC9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#7C9ED9,
#E9DDC9
);
}
// SCSS variable
$vista-blue: #7C9ED9;
// With RGB channels (useful for rgba() usage)
$vista-blue-r: 124;
$vista-blue-g: 158;
$vista-blue-b: 217;
// Usage
.element {
background-color: $vista-blue;
color: rgba($vista-blue-r, $vista-blue-g, $vista-blue-b, 0.8);
}