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
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 #E52B50 from deepest shade to lightest tint.
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);
}