Ferrari Red

HEX: #FF2800 | Modern Palette

On White
3.78:1
FAIL
On Black
5.56:1
PASS

Color Specifications

HEX
#FF2800
RGB
255, 40, 0
HSL
9°, 100% ,50%
CMYK
0, 84, 100, 0

About Ferrari Red

Ferrari Red (#FF2800) is a color with RGB(255, 40, 0) and HSL(9.4°, 100%, 50%). 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 #00D7FF, which creates strong contrast. Its triadic palette includes #00FF28 and #2800FF. The name comes from Ferrari Red (English).

  • HEX: #FF2800
  • RGB: 255, 40, 0
  • HSL: 9.4°, 100%, 50%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #00D7FF
  • Triadic colors: #00FF28, #2800FF
  • The name comes from Ferrari Red (English).

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

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #969600
Protanopia #64640E
Tritanopia #FF2525
Achromatopsia #838383

Frequently Asked Questions

Ferrari Red (#FF2800) is a color with RGB(255, 40, 0) and HSL(9.4°, 100%, 50%).

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

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

#FF2800 is commonly associated with Energetic, Bold.

The name Ferrari Red is linked to Ferrari Red from English, meaning A specific shade of red strongly associated with the Ferrari automobile manufacturer..

Name, History & Etymology

Origin Word Ferrari Red
Meaning A specific shade of red strongly associated with the Ferrari automobile manufacturer.
Language English
First Recorded Use Mid-20th Century

History

The use of red as Italy's national racing color (Rosso Corsa) dates back to the early 1900s, when the International Automobile Federation (FIA) assigned national colors to competing countries. Italian cars, including those from Alfa Romeo and later Ferrari, adopted this red. Enzo Ferrari himself was deeply involved in racing and continued this tradition. Over time, the specific shade used by Ferrari became iconic, leading to the colloquial and later officially recognized term "Ferrari Red." It's not a single, immutable shade but rather a range of reds that have evolved slightly over the decades, though always maintaining a vibrant, deep red character. The hex code #ff2800 is one of the most commonly cited digital approximations for the modern interpretation.

First Recorded Use

While red has been a traditional Italian racing color since the early 20th century, the specific term "Ferrari Red" gained prominence as Ferrari established itself as a dominant force in motorsport, particularly from the 1940s and 1950s onwards. The exact hex code #ff2800 is a modern digital representation.

Cultural Associations

Ferrari Red is one of the most recognizable brand colors globally. It symbolizes speed, luxury, passion, and Italian excellence. It's deeply ingrained in motorsport culture and is often associated with high performance, prestige, and a certain lifestyle. The color is so iconic that it's often used as a benchmark for other reds in design and automotive contexts. It evokes strong emotional responses and is a key part of Ferrari's brand identity, extending beyond cars to merchandise and branding.

Similar Named Colors

Scarlet #FF2400 ΔE 0.39
Red (RYB) #FE2712 ΔE 1.80
Coquelicot #FF3800 ΔE 1.97
Candy Apple Red #FF0800 ΔE 2.07

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF2800,
        #00D7FF
    );
}

// SCSS variable
$ferrari-red: #FF2800;

// With RGB channels (useful for rgba() usage)
$ferrari-red-r: 255;
$ferrari-red-g: 40;
$ferrari-red-b: 0;

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