USAFA Blue
HEX: #004F98 | Modern Palette
Color Specifications
#004F98
0, 79, 152
208°, 100% ,59%
100, 48.03, 0, 40.39
About USAFA Blue
USAFA Blue (#004F98) is a color with RGB(0, 79, 152) and HSL(208.82°, 100%, 59.61%). It is commonly associated with Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #984900, which creates strong contrast. Its triadic palette includes #98004F and #4F9800. The name comes from USAFA Blue (English).
- HEX: #004F98
- RGB: 0, 79, 152
- HSL: 208.82°, 100%, 59.61%
- Mood: Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #984900
- Triadic colors: #98004F, #4F9800
- The name comes from USAFA Blue (English).
Live Components
Color Palettes
USAFA Blue #004F98 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
USAFA Blue #004F98 pairs with #984900 as its complementary color, and #98004F and #4F9800 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The United States Air Force Academy (USAFA) was established in 1954. As with many institutions, the selection of official colors was an important part of establishing its identity. The 'USAFA Blue' (often represented by the hex code #004f98 or similar variations) was chosen to represent the vastness of the sky and the Air Force's domain. It is a deep, rich blue that evokes professionalism, strength, and the heritage of flight. It is prominently featured in the Academy's crest, uniforms, athletic teams (the Falcons), and branding.
First Recorded Use
1950s
Cultural Associations
USAFA Blue is a highly recognizable color within military and aviation circles, specifically associated with the United States Air Force Academy. It symbolizes the institution's values, its cadets, and its contributions to national defense. It is often seen alongside silver or white, which are also part of the Academy's official color palette. The color is deeply ingrained in the identity of USAFA graduates and personnel.
Code Snippets
/* Background */
.element {
background-color: #004F98;
}
/* Text */
.element {
color: #004F98;
}
/* Border */
.element {
border: 1px solid #004F98;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#004F98,
#FF9431
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#004F98,
#FF9431
);
}
// SCSS variable
$usafa-blue: #004F98;
// With RGB channels (useful for rgba() usage)
$usafa-blue-r: 0;
$usafa-blue-g: 79;
$usafa-blue-b: 152;
// Usage
.element {
background-color: $usafa-blue;
color: rgba($usafa-blue-r, $usafa-blue-g, $usafa-blue-b, 0.8);
}