Fire Engine Red
HEX: #CE2029 | Modern Palette
Color Specifications
#CE2029
206, 32, 41
356°, 73% ,46%
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
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 #CE2029 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}