Rosso Corsa

HEX: #D40000 | Modern Palette

On White
5.53:1
PASS
On Black
3.80:1
FAIL

Color Specifications

HEX
#D40000
RGB
212, 0, 0
HSL
0°, 100% ,41%
CMYK
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

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

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #797900
Protanopia #4C4C0A
Tritanopia #D40000
Achromatopsia #696969

Frequently Asked Questions

Rosso Corsa (#D40000) is a color with RGB(212, 0, 0) and HSL(0°, 100%, 41.6%).

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

#D40000 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#D40000 is commonly associated with Energetic, Bold.

The name Rosso Corsa is linked to Rosso Corsa from Italian, meaning Racing Red.

Name, History & Etymology

Origin Word Rosso Corsa
Meaning Racing Red
Language Italian
First Recorded Use Early 20th Century

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.

Similar Named Colors

Boston University Red #CC0000 ΔE 1.66
Venetian Red #C80815 ΔE 3.98
Harvard Crimson #C90016 ΔE 4.33
KU Crimson #E8000D ΔE 4.42

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