Spanish Red

HEX: #E60026 | Modern Palette

On White
4.78:1
PASS
On Black
4.39:1
FAIL

Color Specifications

HEX
#E60026
RGB
230, 0, 38
HSL
350°, 100% ,90%
CMYK
0, 100, 83.48, 9.8

About Spanish Red

Spanish Red (#E60026) is a color with RGB(230, 0, 38) and HSL(350.09°, 100%, 90.2%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #00E6C0, which creates strong contrast. Its triadic palette includes #26E600 and #0026E6.

  • HEX: #E60026
  • RGB: 230, 0, 38
  • HSL: 350.09°, 100%, 90.2%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #00E6C0
  • Triadic colors: #26E600, #0026E6

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 #E60026 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #848407
Protanopia #53532A
Tritanopia #E60808
Achromatopsia #727272

Frequently Asked Questions

Spanish Red (#E60026) is a color with RGB(230, 0, 38) and HSL(350.09°, 100%, 90.2%).

#E60026 pairs strongly with #00E6C0 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#E60026 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#E60026 is commonly associated with Playful.

Similar Named Colors

Cadmium Red #E30022 ΔE 0.97
Alizarin Crimson #E32636 ΔE 2.89
Lust #E62020 ΔE 3.00

Code Snippets

/* Background */
.element {
    background-color: #E60026;
}

/* Text */
.element {
    color: #E60026;
}

/* Border */
.element {
    border: 1px solid #E60026;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #E60026,
        #CDFFF7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #E60026,
        #CDFFF7
    );
}

// SCSS variable
$spanish-red: #E60026;

// With RGB channels (useful for rgba() usage)
$spanish-red-r: 230;
$spanish-red-g: 0;
$spanish-red-b: 38;

// Usage
.element {
    background-color: $spanish-red;
    color: rgba($spanish-red-r, $spanish-red-g, $spanish-red-b, 0.8);
}