Marigold

HEX: #EAA221 | Modern Palette

On White
2.17:1
FAIL
On Black
9.69:1
PASS

Color Specifications

HEX
#EAA221
RGB
234, 162, 33
HSL
38°, 85% ,91%
CMYK
0, 30.77, 85.9, 8.24

About Marigold

Marigold (#EAA221) is a color with RGB(234, 162, 33) and HSL(38.51°, 85.9%, 91.76%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #2169EA, which creates strong contrast. Its triadic palette includes #21EAA2 and #A221EA. The name comes from Marigold (English).

  • HEX: #EAA221
  • RGB: 234, 162, 33
  • HSL: 38.51°, 85.9%, 91.76%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #2169EA
  • Triadic colors: #21EAA2, #A221EA
  • The name comes from Marigold (English).

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 #EAA221 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #BBBB10
Protanopia #ACAC24
Tritanopia #F09999
Achromatopsia #B0B0B0

Frequently Asked Questions

Marigold (#EAA221) is a color with RGB(234, 162, 33) and HSL(38.51°, 85.9%, 91.76%).

#EAA221 pairs strongly with #2169EA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#EAA221 is commonly associated with Playful.

The name Marigold is linked to Marigold from English, meaning A golden flower, specifically referring to the Virgin Mary (Mary's Gold).

Name, History & Etymology

Origin Word Marigold
Meaning A golden flower, specifically referring to the Virgin Mary (Mary's Gold)
Language English
First Recorded Use Late Middle English / Early Modern English

History

The name 'marigold' is believed to have originated from 'Mary's Gold,' referring to the Virgin Mary. This association likely stemmed from the flower's golden color and its historical use in religious festivals and altars. The flower was often placed on altars to Mary, particularly during the month of May. The term 'gold' in its name reflects its vibrant yellow and orange hues. Before this specific name, various species of what we now call marigolds were known by different local names. The genus Tagetes, commonly known as marigolds, is native to the Americas, particularly Mexico and Central America, where they held significant cultural and religious importance long before European contact. Spanish explorers brought marigolds to Europe in the 16th century, where they quickly gained popularity and their association with the Virgin Mary solidified the 'marigold' name.

First Recorded Use

Circa 1500s

Cultural Associations

Marigolds hold diverse cultural significance globally. In Mexico, they are iconic flowers for Día de Muertos (Day of the Dead), believed to guide spirits to their altars with their vibrant color and strong scent. In India, marigolds (Genda Phool) are widely used in religious ceremonies, weddings, and festivals, symbolizing auspiciousness and new beginnings. They are often strung into garlands for deities and decorations. In some Western cultures, they symbolize grief, despair, or jealousy, while in others, they represent creativity and passion. Their bright, cheerful appearance also makes them popular ornamental garden flowers.

Similar Named Colors

Gamboge #E49B0F ΔE 1.91
Dark Tangerine #FFA812 ΔE 3.96
Chrome Yellow #FFA700 ΔE 4.01
Orange #FFA500 ΔE 4.14

Code Snippets

/* Background */
.element {
    background-color: #EAA221;
}

/* Text */
.element {
    color: #EAA221;
}

/* Border */
.element {
    border: 1px solid #EAA221;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #EAA221,
        #D8E5FC
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #EAA221,
        #D8E5FC
    );
}

// SCSS variable
$marigold: #EAA221;

// With RGB channels (useful for rgba() usage)
$marigold-r: 234;
$marigold-g: 162;
$marigold-b: 33;

// Usage
.element {
    background-color: $marigold;
    color: rgba($marigold-r, $marigold-g, $marigold-b, 0.8);
}