Rosso Corsa
HEX: #D40000 | Modern Palette
Color Specifications
#D40000
212, 0, 0
0°, 100% ,41%
0, 100, 100, 17
About Rosso Corsa
Rosso Corsa (#D40000) is a color with RGB(212, 0, 0) and HSL(0°, 100%, 41.6%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00D4D4, which creates strong contrast. Its triadic palette includes #00D400 and #0000D4. The name comes from Rosso Corsa (Italian).
- HEX: #D40000
- RGB: 212, 0, 0
- HSL: 0°, 100%, 41.6%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00D4D4
- Triadic colors: #00D400, #0000D4
- The name comes from Rosso Corsa (Italian).
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 #D40000 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Before commercial sponsorship, countries were assigned specific colors for international motor racing. Italy's assigned color was red, which became known as 'Rosso Corsa'. This color was famously adopted by Italian racing teams and manufacturers like Alfa Romeo, Maserati, Lancia, and most notably, Ferrari. Ferrari's association with Rosso Corsa is so strong that it has become almost synonymous with the brand, even though their road cars are available in many colors. The color was a practical choice initially, making it easy to identify Italian cars on the track. Over time, it evolved into a symbol of Italian motorsport excellence and passion.
First Recorded Use
The term 'Rosso Corsa' as a specific racing color emerged in the early 20th century, specifically with the Grand Prix motor racing in the 1920s and 1930s.
Cultural Associations
Rosso Corsa is deeply embedded in Italian culture, particularly within the context of automotive design and motorsport. It symbolizes speed, passion, luxury, and the competitive spirit of Italian engineering. It's not just a color; it's an icon representing a significant part of Italy's industrial and sporting heritage. For many, it evokes images of classic Ferrari race cars, the roar of engines, and the thrill of competition. It has also influenced fashion and design, often used to convey a sense of Italian flair and sophistication.
Code Snippets
/* Background */
.element {
background-color: #D40000;
}
/* Text */
.element {
color: #D40000;
}
/* Border */
.element {
border: 1px solid #D40000;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D40000,
#00D4D4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D40000,
#00D4D4
);
}
// SCSS variable
$rosso-corsa: #D40000;
// With RGB channels (useful for rgba() usage)
$rosso-corsa-r: 212;
$rosso-corsa-g: 0;
$rosso-corsa-b: 0;
// Usage
.element {
background-color: $rosso-corsa;
color: rgba($rosso-corsa-r, $rosso-corsa-g, $rosso-corsa-b, 0.8);
}