Spanish Gray
HEX: #989898 | Modern Palette
Color Specifications
#989898
152, 152, 152
0°, 0% ,59%
0, 0, 0, 40.39
About Spanish Gray
Spanish Gray (#989898) is a color with RGB(152, 152, 152) and HSL(0°, 0%, 59.61%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Muted styles and is suitable for Text, Background, Border. Its complementary color is Spanish Gray (#989898), which creates strong contrast. Its triadic palette includes Spanish Gray (#989898) and Spanish Gray (#989898). The name comes from Spanish Gray (English).
- HEX: #989898
- RGB: 152, 152, 152
- HSL: 0°, 0%, 59.61%
- Mood: Minimal
- Style: Monochrome, Muted
- Use case: Text, Background, Border
- Complementary color: Spanish Gray (#989898)
- Triadic colors: Spanish Gray (#989898), Spanish Gray (#989898)
- The name comes from Spanish Gray (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 #989898 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#989898
#989898
#989898
#989898
Frequently Asked Questions
Name, History & Etymology
History
The naming of colors often reflects cultural associations or geographical origins, even if loosely. 'Spanish Gray' likely emerged to describe a particular tone of gray that evoked the appearance of materials or landscapes found in Spain, such as the gray tones of traditional Spanish architecture, slate roofs, or even the muted light of certain Spanish regions. It's a descriptive name rather than a direct translation from Spanish. Its use became more standardized with the advent of color systems and digital color representation.
First Recorded Use
The exact first documented use of 'Spanish Gray' as a specific color name is difficult to pinpoint precisely, but it gained traction in color guides and fashion/design contexts in the early to mid-20th century. The hex code #989898 is a modern digital representation.
Cultural Associations
The 'Spanish' prefix in color names (e.g., Spanish Red, Spanish Green) often implies a certain richness, earthiness, or a specific historical/cultural context, even if the connection is more evocative than literal. For 'Spanish Gray,' it suggests a sophisticated, perhaps slightly warm or earthy gray, distinct from a stark industrial gray. It can be seen as a neutral color that carries a subtle sense of tradition or European elegance.
Code Snippets
/* Background */
.element {
background-color: #989898;
}
/* Text */
.element {
color: #989898;
}
/* Border */
.element {
border: 1px solid #989898;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#989898,
#989898
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#989898,
#989898
);
}
// SCSS variable
$spanish-gray: #989898;
// With RGB channels (useful for rgba() usage)
$spanish-gray-r: 152;
$spanish-gray-g: 152;
$spanish-gray-b: 152;
// Usage
.element {
background-color: $spanish-gray;
color: rgba($spanish-gray-r, $spanish-gray-g, $spanish-gray-b, 0.8);
}