Imperial Blue
HEX: #002395 | Modern Palette
Color Specifications
#002395
0, 35, 149
225°, 100% ,58%
100, 76.51, 0, 41.57
About Imperial Blue
Imperial Blue (#002395) is a color with RGB(0, 35, 149) and HSL(225.91°, 100%, 58.43%). 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 #957200, which creates strong contrast. Its triadic palette includes #950023 and #239500. The name comes from Imperial Blue (English).
- HEX: #002395
- RGB: 0, 35, 149
- HSL: 225.91°, 100%, 58.43%
- Mood: Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #957200
- Triadic colors: #950023, #239500
- The name comes from Imperial Blue (English).
Live Components
Color Palettes
Imperial Blue #002395 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
Imperial Blue #002395 pairs with #957200 as its complementary color, and #950023 and #239500 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 color blue itself has a long and varied history, from ancient Egyptian lapis lazuli to medieval ultramarine. Deep blues have frequently been associated with power, divinity, and wealth due to the rarity and cost of pigments. The term 'imperial' specifically links this shade to empires and monarchies, evoking images of royal robes, flags, and official regalia. The hex code #002395 represents a very dark, saturated blue, fitting this historical association.
First Recorded Use
The specific naming 'Imperial Blue' likely emerged as color standardization and naming became more common, drawing on existing associations of deep blues with imperial power. While deep blues have been used for centuries, the precise 'Imperial Blue' as a distinct named shade is a more modern development.
Cultural Associations
Imperial Blue, or similar deep blues, often signifies dignity, stability, and tradition. It can be seen in national flags (e.g., parts of the Union Jack, the flag of Russia), military uniforms, and corporate branding aiming to convey reliability and authority. In some contexts, it might also evoke a sense of formality or conservatism. Its depth can also be associated with the night sky or deep oceans, adding a sense of vastness or mystery.
Code Snippets
/* Background */
.element {
background-color: #002395;
}
/* Text */
.element {
color: #002395;
}
/* Border */
.element {
border: 1px solid #002395;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#002395,
#FFCD2B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#002395,
#FFCD2B
);
}
// SCSS variable
$imperial-blue: #002395;
// With RGB channels (useful for rgba() usage)
$imperial-blue-r: 0;
$imperial-blue-g: 35;
$imperial-blue-b: 149;
// Usage
.element {
background-color: $imperial-blue;
color: rgba($imperial-blue-r, $imperial-blue-g, $imperial-blue-b, 0.8);
}