Marigold
HEX: #EAA221 | Modern Palette
Color Specifications
#EAA221
234, 162, 33
38°, 85% ,91%
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
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 #EAA221 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}