Wild Blue Yonder
HEX: #A2ADD0 | Modern Palette
Color Specifications
#A2ADD0
162, 173, 208
225°, 32% ,72%
22, 17, 0, 18
About Wild Blue Yonder
Wild Blue Yonder (#A2ADD0) is a color with RGB(162, 173, 208) and HSL(225.7°, 32.9%, 72.5%). It is commonly associated with Calm moods. In design, it fits Pastel, Cool styles and is suitable for Text, Print. Its complementary color is #D0C5A2, which creates strong contrast. Its triadic palette includes #D0A2AD and #ADD0A2. The name comes from Wild Blue Yonder (English).
- HEX: #A2ADD0
- RGB: 162, 173, 208
- HSL: 225.7°, 32.9%, 72.5%
- Mood: Calm
- Style: Pastel, Cool
- Use case: Text, Print
- Complementary color: #D0C5A2
- Triadic colors: #D0A2AD, #ADD0A2
- The name comes from Wild Blue Yonder (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 #A2ADD0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'yonder' itself is an old English word meaning 'at some distance in the direction indicated; over there.' It has been used for centuries. The specific combination 'wild blue yonder' became iconic through its association with aviation and the U.S. Air Force. The song, written by Robert Crawford, vividly describes the experience of flying and the vastness of the sky, cementing the phrase in popular culture as a romantic and adventurous term for the open sky.
First Recorded Use
The phrase gained significant popularity and recognition with the official song of the U.S. Air Force, 'The U.S. Air Force Song' (often referred to as 'Wild Blue Yonder'), which was adopted in 1939. However, the concept of 'yonder' as a distant place is much older.
Cultural Associations
The phrase is strongly associated with aviation, space exploration, and a sense of adventure, freedom, and the unknown. It evokes images of pilots soaring through the sky. It's often used metaphorically to describe any distant, aspirational, or undefined goal or location. The color 'blue' refers to the sky, and 'wild' emphasizes its untamed, boundless nature.
Code Snippets
/* Background */
.element {
background-color: #A2ADD0;
}
/* Text */
.element {
color: #A2ADD0;
}
/* Border */
.element {
border: 1px solid #A2ADD0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A2ADD0,
#D0C5A2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A2ADD0,
#D0C5A2
);
}
// SCSS variable
$wild-blue-yonder: #A2ADD0;
// With RGB channels (useful for rgba() usage)
$wild-blue-yonder-r: 162;
$wild-blue-yonder-g: 173;
$wild-blue-yonder-b: 208;
// Usage
.element {
background-color: $wild-blue-yonder;
color: rgba($wild-blue-yonder-r, $wild-blue-yonder-g, $wild-blue-yonder-b, 0.8);
}