Fire Engine Red

HEX: #CE2029 | Modern Palette

On White
5.44:1
PASS
On Black
3.86:1
FAIL

Color Specifications

HEX
#CE2029
RGB
206, 32, 41
HSL
356°, 73% ,46%
CMYK
0, 84, 80, 19

About Fire Engine Red

Fire Engine Red (#CE2029) is a color with RGB(206, 32, 41) and HSL(356.9°, 73.1%, 46.7%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #20CEC5, which creates strong contrast. Its triadic palette includes #29CE20 and #2029CE. The name comes from Fire Engine Red (English).

  • HEX: #CE2029
  • RGB: 206, 32, 41
  • HSL: 356.9°, 73.1%, 46.7%
  • Mood: Energetic, Romantic
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #20CEC5
  • Triadic colors: #29CE20, #2029CE
  • The name comes from Fire Engine 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 #CE2029 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #787818
Protanopia #50502C
Tritanopia #CE2121
Achromatopsia #6A6A6A

Frequently Asked Questions

Fire Engine Red (#CE2029) is a color with RGB(206, 32, 41) and HSL(356.9°, 73.1%, 46.7%).

#CE2029 pairs strongly with #20CEC5 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#CE2029 is commonly associated with Energetic, Romantic.

The name Fire Engine Red is linked to Fire Engine Red from English, meaning A vivid, bright red color, specifically associated with the color of fire engines..

Name, History & Etymology

Origin Word Fire Engine Red
Meaning A vivid, bright red color, specifically associated with the color of fire engines.
Language English
First Recorded Use Early 20th Century

History

The color 'Fire Engine Red' is intrinsically linked to the history of fire apparatus. While early fire-fighting equipment varied in color, the need for high visibility became paramount with the advent of motorized fire engines and increased traffic. Red was chosen for its strong visual impact and its traditional association with danger and urgency. The specific shade #ce2029 is a common representation of this vibrant red, often used for its brightness and ability to stand out. Over time, 'Fire Engine Red' has become a widely recognized color name, synonymous with a particular shade of intense red.

First Recorded Use

The exact first use as a named color is difficult to pinpoint, but the term became common in the early 20th century as fire engines transitioned to a standardized, highly visible red.

Cultural Associations

Beyond fire engines, 'Fire Engine Red' is culturally associated with boldness, energy, passion, and urgency. It's frequently used in branding for products that want to convey excitement or power. It's also a popular color in fashion, automotive design, and advertising where a strong visual statement is desired. The color evokes a sense of immediate attention and action.

Similar Named Colors

Amaranth Red #D3212D ΔE 1.28
Lava #CF1020 ΔE 1.62
Persian Red #CC3333 ΔE 2.18

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #CE2029,
        #20CEC5
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #CE2029,
        #20CEC5
    );
}

// SCSS variable
$fire-engine-red: #CE2029;

// With RGB channels (useful for rgba() usage)
$fire-engine-red-r: 206;
$fire-engine-red-g: 32;
$fire-engine-red-b: 41;

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