Rusty Red
HEX: #DA2C43 | Modern Palette
Color Specifications
#DA2C43
218, 44, 67
352°, 79% ,85%
0, 79.82, 69.27, 14.51
About Rusty Red
Rusty Red (#DA2C43) is a color with RGB(218, 44, 67) and HSL(352.07°, 79.82%, 85.49%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #2CDAC3, which creates strong contrast. Its triadic palette includes #43DA2C and #2C43DA. The name comes from Rusty Red (English).
- HEX: #DA2C43
- RGB: 218, 44, 67
- HSL: 352.07°, 79.82%, 85.49%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #2CDAC3
- Triadic colors: #43DA2C, #2C43DA
- The name comes from Rusty Red (English).
Live Components
Color Palettes
Rusty Red #DA2C43 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
Rusty Red #DA2C43 pairs with #2CDAC3 as its complementary color, and #43DA2C and #2C43DA in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#828239
#595945
#D93030
#737373
Frequently Asked Questions
Name, History & Etymology
History
The term 'rust' to describe the reddish-brown oxidation of iron has existed for centuries. The adjective 'rusty' naturally followed to describe objects or colors resembling this phenomenon. 'Rusty Red' specifically emphasizes the red component within the rust spectrum, distinguishing it from more brownish or orange-brown 'rust' colors. Its use became more prevalent as color naming became more nuanced, particularly in paint, textile, and cosmetic industries where specific shades needed clear descriptors. It evokes a sense of aged metal, warmth, and earthiness.
First Recorded Use
The exact first documented use of 'Rusty Red' as a specific color name is difficult to pinpoint precisely, but the concept of describing a reddish-brown color as 'rusty' would have emerged as early as the 17th century with the understanding of rust itself. As a formal color name, it likely gained traction in the late 19th to early 20th century with the standardization of color palettes in art, industry, and fashion.
Cultural Associations
Rusty Red is often associated with autumn, natural landscapes (especially those with iron-rich soil or rocks), and vintage aesthetics. It can convey a sense of warmth, earthiness, and durability. In fashion and interior design, it's often used to create a cozy, rustic, or sophisticated look. It's a common color in traditional art to depict natural elements or aged objects. It can also be seen in industrial design, reflecting the material it's named after.
Code Snippets
/* Background */
.element {
background-color: #DA2C43;
}
/* Text */
.element {
color: #DA2C43;
}
/* Border */
.element {
border: 1px solid #DA2C43;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DA2C43,
#BCF8F0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DA2C43,
#BCF8F0
);
}
// SCSS variable
$rusty-red: #DA2C43;
// With RGB channels (useful for rgba() usage)
$rusty-red-r: 218;
$rusty-red-g: 44;
$rusty-red-b: 67;
// Usage
.element {
background-color: $rusty-red;
color: rgba($rusty-red-r, $rusty-red-g, $rusty-red-b, 0.8);
}