Spanish Blue
HEX: #0070B8 | Modern Palette
Color Specifications
#0070B8
0, 112, 184
203°, 100% ,72%
100, 39.13, 0, 27.84
About Spanish Blue
Spanish Blue (#0070B8) is a color with RGB(0, 112, 184) and HSL(203.48°, 100%, 72.16%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #B84800, which creates strong contrast. Its triadic palette includes #B80070 and #70B800. The name comes from Spanish Blue (English).
- HEX: #0070B8
- RGB: 0, 112, 184
- HSL: 203.48°, 100%, 72.16%
- Mood: Bold, Playful
- Style: Neon, Cool
- Use case: Text, Button, Accent
- Complementary color: #B84800
- Triadic colors: #B80070, #70B800
- The name comes from Spanish 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 #0070B8 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name 'Spanish Blue' likely arose from a general association of certain vibrant or deep blues with Spanish art, ceramics, textiles, or even the colors of the Spanish flag (though the flag's blue is typically darker or navy). It's a descriptive name rather than one with a direct etymological root in the Spanish language itself for this specific shade. Color names often develop through popular usage and commercial applications. The hex code #0070b8 represents a specific modern digital interpretation of this named color.
First Recorded Use
The exact first documented use of 'Spanish Blue' for the specific hex #0070b8 is difficult to pinpoint precisely without extensive historical color dictionary research. However, the concept of 'Spanish Blue' as a distinct color name likely emerged as color standardization and naming became more common.
Cultural Associations
While not an official national color, 'Spanish Blue' evokes a sense of Spanish heritage and aesthetics. Blues are prominent in Spanish art, particularly in religious paintings (e.g., the Virgin Mary's robes), traditional ceramics (like Talavera pottery), and some regional costumes. The name itself helps to culturally brand this particular shade.
Code Snippets
/* Background */
.element {
background-color: #0070B8;
}
/* Text */
.element {
color: #0070B8;
}
/* Border */
.element {
border: 1px solid #0070B8;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0070B8,
#FFA971
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0070B8,
#FFA971
);
}
// SCSS variable
$spanish-blue: #0070B8;
// With RGB channels (useful for rgba() usage)
$spanish-blue-r: 0;
$spanish-blue-g: 112;
$spanish-blue-b: 184;
// Usage
.element {
background-color: $spanish-blue;
color: rgba($spanish-blue-r, $spanish-blue-g, $spanish-blue-b, 0.8);
}