Amaranth Red

HEX: #D3212D | Modern Palette

On White
5.22:1
PASS
On Black
4.03:1
FAIL

Color Specifications

HEX
#D3212D
RGB
211, 33, 45
HSL
355°, 84% ,82%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #7C7C1D
Protanopia #525230
Tritanopia #D32323
Achromatopsia #6C6C6C

Frequently Asked Questions

Amaranth Red (#D3212D) is a color with RGB(211, 33, 45) and HSL(355.96°, 84.36%, 82.75%).

#D3212D pairs strongly with #21D3C7 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#D3212D is suitable for Text, Button, Background and works well with Warm styles.

#D3212D is commonly associated with Playful.

The name Amaranth Red is linked to ἀμάραντος (amárantos) from Greek, meaning undying, unfading.

Name, History & Etymology

Origin Word ἀμάραντος (amárantos)
Meaning undying, unfading
Language Greek
First Recorded Use 16th Century (for the flower/plant)

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.

Similar Named Colors

Fire Engine Red #CE2029 ΔE 1.28
Persian Red #CC3333 ΔE 1.81
Lava #CF1020 ΔE 2.65

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);
}