Amaranth Red
HEX: #D3212D | Modern Palette
Color Specifications
#D3212D
211, 33, 45
355°, 84% ,82%
0, 84.36, 78.67, 17.25
About Amaranth Red
Amaranth Red (#D3212D) is a color with RGB(211, 33, 45) and HSL(355.96°, 84.36%, 82.75%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #21D3C7, which creates strong contrast. Its triadic palette includes #2DD321 and #212DD3. The name comes from ἀμάραντος (amárantos) (Greek).
- HEX: #D3212D
- RGB: 211, 33, 45
- HSL: 355.96°, 84.36%, 82.75%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #21D3C7
- Triadic colors: #2DD321, #212DD3
- The name comes from ἀμάραντος (amárantos) (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 #D3212D from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#7C7C1D
#525230
#D32323
#6C6C6C
Frequently Asked Questions
Name, History & Etymology
History
The amaranth plant has a rich history, particularly in Mesoamerican cultures where it was a staple food and held significant religious importance. Its seeds were used to make effigies of gods and were part of rituals. The plant's vibrant, often deep red or purplish-red flowers and leaves naturally lent their name to a color. The concept of 'amaranth' as an unfading color or flower comes from Greek mythology, where it symbolized immortality. In modern color systems, 'Amaranth Red' typically refers to a specific shade of reddish-pink or crimson, often with a slight purple undertone, reflecting the diverse hues found in amaranth flowers.
First Recorded Use
The word "amaranth" itself entered English in the 16th century, referring to a mythical unfading flower and later to the actual plant genus. The specific color "Amaranth Red" as a named hue likely became more formalized with color standardization efforts, but the association of the plant's deep red/purple with a color is much older.
Cultural Associations
In ancient Aztec civilization, amaranth was a sacred crop, second only to maize. Its use was suppressed by Spanish conquistadors due to its religious significance. Today, amaranth is recognized globally for its nutritional value. As a color, Amaranth Red often evokes feelings of vibrancy, passion, and sometimes a touch of exoticism due to its historical and botanical origins. It's a color that can be seen in textiles, art, and design, often chosen for its striking and rich appearance.
Code Snippets
/* Background */
.element {
background-color: #D3212D;
}
/* Text */
.element {
color: #D3212D;
}
/* Border */
.element {
border: 1px solid #D3212D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D3212D,
#AEF8F3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D3212D,
#AEF8F3
);
}
// SCSS variable
$amaranth-red: #D3212D;
// With RGB channels (useful for rgba() usage)
$amaranth-red-r: 211;
$amaranth-red-g: 33;
$amaranth-red-b: 45;
// Usage
.element {
background-color: $amaranth-red;
color: rgba($amaranth-red-r, $amaranth-red-g, $amaranth-red-b, 0.8);
}