Air Force Blue (RAF)
HEX: #5D8AA8 | blue
Color Specifications
#5D8AA8
93, 138, 168
204°, 44% ,65%
44.64, 17.86, 0, 34.12
About Air Force Blue (RAF)
Air Force Blue (RAF) (#5D8AA8) is a color with RGB(93, 138, 168) and HSL(204°, 44.64%, 65.88%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Logo, Print. Its complementary color is #A87B5D, which creates strong contrast. Its triadic palette includes #A85D8A and #8AA85D. The name comes from Air Force Blue (English).
- HEX: #5D8AA8
- RGB: 93, 138, 168
- HSL: 204°, 44.64%, 65.88%
- Mood: Calm
- Style: Cool
- Use case: Text, Logo, Print
- Complementary color: #A87B5D
- Triadic colors: #A85D8A, #8AA85D
- The name comes from Air Force Blue (English).
Live Components
Color Palettes
Air Force Blue (RAF) #5D8AA8 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
Air Force Blue (RAF) #5D8AA8 pairs with #A87B5D as its complementary color, and #A85D8A and #8AA85D 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 Royal Air Force (RAF) was formed in 1918, consolidating the Royal Flying Corps and the Royal Naval Air Service. A distinctive blue uniform was adopted to differentiate it from the army and navy, establishing 'Air Force Blue' as its official color. This specific shade became iconic for the RAF's service dress.
First Recorded Use
1918
Cultural Associations
Air Force Blue (RAF) is strongly associated with British military aviation and national pride. It symbolizes the service and sacrifice of RAF personnel and is instantly recognizable in the UK.
Code Snippets
/* Background */
.element {
background-color: #5D8AA8;
}
/* Text */
.element {
color: #5D8AA8;
}
/* Border */
.element {
border: 1px solid #5D8AA8;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#5D8AA8,
#CFA081
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#5D8AA8,
#CFA081
);
}
// SCSS variable
$air-force-blue-(raf): #5D8AA8;
// With RGB channels (useful for rgba() usage)
$air-force-blue-(raf)-r: 93;
$air-force-blue-(raf)-g: 138;
$air-force-blue-(raf)-b: 168;
// Usage
.element {
background-color: $air-force-blue-(raf);
color: rgba($air-force-blue-(raf)-r, $air-force-blue-(raf)-g, $air-force-blue-(raf)-b, 0.8);
}