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
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 #5D8AA8 from deepest shade to lightest tint.
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);
}