Amaranth
HEX: #E52B50 | red
Color Specifications
#E52B50
229, 43, 80
348°, 78% ,53%
0, 81, 65, 10
About Amaranth
Amaranth (#E52B50) is a color with RGB(229, 43, 80) and HSL(348.1°, 78.2%, 53.3%). 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 #2BE5C0, which creates strong contrast. Its triadic palette includes #50E52B and #2B50E5. The name comes from amarantos (Greek).
- HEX: #E52B50
- RGB: 229, 43, 80
- HSL: 348.1°, 78.2%, 53.3%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #2BE5C0
- Triadic colors: #50E52B, #2B50E5
- The name comes from amarantos (Greek).
Live Components
Color Palettes
Amaranth #E52B50 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
Amaranth #E52B50 pairs with #2BE5C0 as its complementary color, and #50E52B and #2B50E5 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 amaranth flower, known for its vibrant, long-lasting blooms, inspired the color's name. Early uses of the color term were often associated with textiles and dyes aiming to replicate the flower's distinctive shade. Its precise hue has varied over time, sometimes leaning more towards red, other times towards purple, reflecting different botanical species and artistic interpretations. The color gained some prominence in fashion and art during the Victorian era.
First Recorded Use
The color name 'amaranth' first appeared in English in the late 17th century, specifically in 1690, to describe a reddish-purple hue resembling the flower.
Cultural Associations
In various cultures, the amaranth flower symbolizes immortality, unfading love, and resilience due to its enduring nature. It is often associated with mythical properties and has been used in traditional ceremonies and decorations. The color itself evokes a sense of richness and depth, often linked to passion and vitality.
Code Snippets
/* Background */
.element {
background-color: #E52B50;
}
/* Text */
.element {
color: #E52B50;
}
/* Border */
.element {
border: 1px solid #E52B50;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E52B50,
#2BE5C0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E52B50,
#2BE5C0
);
}
// SCSS variable
$amaranth: #E52B50;
// With RGB channels (useful for rgba() usage)
$amaranth-r: 229;
$amaranth-g: 43;
$amaranth-b: 80;
// Usage
.element {
background-color: $amaranth;
color: rgba($amaranth-r, $amaranth-g, $amaranth-b, 0.8);
}