Resolution Blue
HEX: #002387 | Modern Palette
Color Specifications
#002387
0, 35, 135
224°, 100% ,52%
100, 74.07, 0, 47.06
About Resolution Blue
Resolution Blue (#002387) is a color with RGB(0, 35, 135) and HSL(224.44°, 100%, 52.94%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #876400, which creates strong contrast. Its triadic palette includes #870023 and #238700. The name comes from Resolution Blue (English).
- HEX: #002387
- RGB: 0, 35, 135
- HSL: 224.44°, 100%, 52.94%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #876400
- Triadic colors: #870023, #238700
- The name comes from Resolution Blue (English).
Live Components
Color Palettes
Resolution Blue #002387 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
Resolution Blue #002387 pairs with #876400 as its complementary color, and #870023 and #238700 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 #002387 is a deep, rich blue. The 'Resolution' part of its name suggests a connection to high-definition displays, digital clarity, or perhaps a formal, decisive quality. Many named colors in digital palettes are assigned evocative names to make them more memorable and to suggest their potential use cases. This particular shade is quite dark, leaning towards navy but with a distinct vibrancy that prevents it from being a dull dark blue.
First Recorded Use
The specific name 'Resolution Blue' for the hex code #002387 likely emerged with the standardization of web colors and digital color palettes. While the color itself existed, its naming as 'Resolution Blue' is a modern convention.
Cultural Associations
Deep blues like Resolution Blue are often associated with professionalism, authority, stability, and trust. They are commonly used in corporate branding, government logos, and educational institutions. In digital design, such a color can provide a strong background or a prominent accent. It evokes a sense of seriousness and reliability.
Code Snippets
/* Background */
.element {
background-color: #002387;
}
/* Text */
.element {
color: #002387;
}
/* Border */
.element {
border: 1px solid #002387;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#002387,
#FFC10F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#002387,
#FFC10F
);
}
// SCSS variable
$resolution-blue: #002387;
// With RGB channels (useful for rgba() usage)
$resolution-blue-r: 0;
$resolution-blue-g: 35;
$resolution-blue-b: 135;
// Usage
.element {
background-color: $resolution-blue;
color: rgba($resolution-blue-r, $resolution-blue-g, $resolution-blue-b, 0.8);
}