Spanish Red
HEX: #E60026 | Modern Palette
Color Specifications
#E60026
230, 0, 38
350°, 100% ,90%
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
Color Palettes
Spanish Red #E60026 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
Spanish Red #E60026 pairs with #00E6C0 as its complementary color, and #26E600 and #0026E6 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
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);
}