Spanish Gray

HEX: #989898 | Modern Palette

On White
2.88:1
FAIL
On Black
7.28:1
PASS

Color Specifications

HEX
#989898
RGB
152, 152, 152
HSL
0°, 0% ,59%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Deuteranopia #989898
Protanopia #989898
Tritanopia #989898
Achromatopsia #989898

Frequently Asked Questions

Spanish Gray (#989898) is a color with RGB(152, 152, 152) and HSL(0°, 0%, 59.61%).

#989898 pairs strongly with Spanish Gray (#989898) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#989898 is suitable for Text, Background, Border and works well with Monochrome, Muted styles.

#989898 is commonly associated with Minimal.

The name Spanish Gray is linked to Spanish Gray from English, meaning A specific shade of gray, often associated with the color of Spanish slate or the general perception of a muted, sophisticated gray..

Name, History & Etymology

Origin Word Spanish Gray
Meaning A specific shade of gray, often associated with the color of Spanish slate or the general perception of a muted, sophisticated gray.
Language English
First Recorded Use Early 20th Century

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.

Similar Named Colors

Dark Gray #A9A9A9 ΔE 5.19
Silver Chalice #ACACAC ΔE 6.06
Battleship Grey #848482 ΔE 7.02
Taupe Gray #8B8589 ΔE 7.30

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);
}