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