Wild Blue Yonder

HEX: #A2ADD0 | Modern Palette

On White
2.23:1
FAIL
On Black
9.42:1
PASS

Color Specifications

HEX
#A2ADD0
RGB
162, 173, 208
HSL
225°, 32% ,72%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Calm
Style
Pastel Cool
Use case
Text Print

Accessibility Simulation

Deuteranopia #AAAAD0
Protanopia #ACACD0
Tritanopia #9CB2B2
Achromatopsia #AEAEAE

Frequently Asked Questions

Wild Blue Yonder (#A2ADD0) is a color with RGB(162, 173, 208) and HSL(225.7°, 32.9%, 72.5%).

#A2ADD0 pairs strongly with #D0C5A2 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A2ADD0 is suitable for Text, Print and works well with Pastel, Cool styles.

#A2ADD0 is commonly associated with Calm.

The name Wild Blue Yonder is linked to Wild Blue Yonder from English, meaning A distant, unknown, or imaginary place, especially in the sky or space..

Name, History & Etymology

Origin Word Wild Blue Yonder
Meaning A distant, unknown, or imaginary place, especially in the sky or space.
Language English
First Recorded Use Early 20th Century

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.

Similar Named Colors

Ceil #92A1CF ΔE 4.58
Blue Bell #A2A2D0 ΔE 5.17
Light Steel Blue #B0C4DE ΔE 7.79
Carolina Blue #99BADD ΔE 7.99

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);
}