Tractor Red
HEX: #FD0E35 | Modern Palette
Color Specifications
#FD0E35
253, 14, 53
350°, 98% ,52%
0, 94, 79, 1
About Tractor Red
Tractor Red (#FD0E35) is a color with RGB(253, 14, 53) and HSL(350.2°, 98.4%, 52.4%). 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 #0EFDD6, which creates strong contrast. Its triadic palette includes #35FD0E and #0E35FD. The name comes from Tractor Red (English).
- HEX: #FD0E35
- RGB: 253, 14, 53
- HSL: 350.2°, 98.4%, 52.4%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0EFDD6
- Triadic colors: #35FD0E, #0E35FD
- The name comes from Tractor Red (English).
Live Components
Color Palettes
Tractor Red #FD0E35 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Tractor Red #FD0E35 pairs with #0EFDD6 as its complementary color, and #35FD0E and #0E35FD in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The iconic 'Tractor Red' is most famously associated with International Harvester (IH), which standardized its equipment in a distinctive red hue. This color choice was practical, offering high visibility in fields, and also served as a strong brand identifier. Other tractor manufacturers, such as Massey Ferguson, also utilized various shades of red, contributing to the general association of red with agricultural machinery. The specific shade could vary slightly between manufacturers and over time due to paint technology and branding updates.
First Recorded Use
The term 'Tractor Red' likely emerged in the early 20th century, coinciding with the widespread adoption and branding of agricultural tractors, particularly by manufacturers like International Harvester.
Cultural Associations
Tractor Red evokes a strong sense of Americana, agriculture, and rural life, symbolizing hard work and the machinery that shaped modern farming. It is deeply embedded in the visual culture of farming communities and is often seen in vintage advertising and memorabilia related to agricultural equipment. The color's vibrancy also makes it a popular choice in design contexts seeking a nostalgic or robust aesthetic.
Code Snippets
/* Background */
.element {
background-color: #FD0E35;
}
/* Text */
.element {
color: #FD0E35;
}
/* Border */
.element {
border: 1px solid #FD0E35;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FD0E35,
#0EFDD6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FD0E35,
#0EFDD6
);
}
// SCSS variable
$tractor-red: #FD0E35;
// With RGB channels (useful for rgba() usage)
$tractor-red-r: 253;
$tractor-red-g: 14;
$tractor-red-b: 53;
// Usage
.element {
background-color: $tractor-red;
color: rgba($tractor-red-r, $tractor-red-g, $tractor-red-b, 0.8);
}