Goldenrod

HEX: #DAA520 | Modern Palette

On White
2.24:1
FAIL
On Black
9.38:1
PASS

Color Specifications

HEX
#DAA520
RGB
218, 165, 32
HSL
42°, 74% ,49%
CMYK
0, 24, 85, 15

About Goldenrod

Goldenrod (#DAA520) is a color with RGB(218, 165, 32) and HSL(42.9°, 74.4%, 49%). It is commonly associated with Energetic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #2055DA, which creates strong contrast. Its triadic palette includes #20DAA5 and #A520DA. The name comes from Goldenrod (English).

  • HEX: #DAA520
  • RGB: 218, 165, 32
  • HSL: 42.9°, 74.4%, 49%
  • Mood: Energetic
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #2055DA
  • Triadic colors: #20DAA5, #A520DA
  • The name comes from Goldenrod (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 #DAA520 from deepest shade to lightest tint.

Color Characteristics

Mood
Energetic
Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #B6B615
Protanopia #ACAC22
Tritanopia #E19C9C
Achromatopsia #ADADAD

Frequently Asked Questions

Goldenrod (#DAA520) is a color with RGB(218, 165, 32) and HSL(42.9°, 74.4%, 49%).

#DAA520 pairs strongly with #2055DA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#DAA520 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#DAA520 is commonly associated with Energetic.

The name Goldenrod is linked to Goldenrod from English, meaning A plant with a rod-like stem and golden-yellow flowers..

Name, History & Etymology

Origin Word Goldenrod
Meaning A plant with a rod-like stem and golden-yellow flowers.
Language English
First Recorded Use Late 18th Century

History

The name 'goldenrod' is a descriptive compound word, combining 'golden' (referring to the color of its flowers) and 'rod' (referring to its upright, often unbranched stem structure). The plant itself has a long history of use by indigenous peoples in North America for medicinal purposes, including treating inflammation, wounds, and respiratory issues. In Europe, some species were introduced and became naturalized. The color 'goldenrod' as a specific hue in art, fashion, or digital palettes is derived directly from the plant's characteristic flower color. It's a warm, muted yellow-orange.

First Recorded Use

The term 'goldenrod' for the plant genus Solidago appears to have become common in English botanical literature by the late 18th century. Earlier references might describe the plant without using this specific compound word.

Cultural Associations

Goldenrod is the state flower of Kentucky and Nebraska in the United States. Despite its vibrant appearance, it is often mistakenly blamed for hay fever due to its blooming at the same time as ragweed, which is the true culprit. Goldenrod pollen is heavy and sticky, designed for insect pollination, not wind dispersal. It is also a significant late-season nectar source for bees and other pollinators. In some cultures, it symbolizes encouragement or good fortune.

Similar Named Colors

Urobilin #E1AD21 ΔE 2.30
Lemon Curry #CCA01D ΔE 3.04
Vivid Amber #CC9900 ΔE 3.64
Satin Sheen Gold #CBA135 ΔE 3.65

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #DAA520,
        #2055DA
    );
}

// SCSS variable
$goldenrod: #DAA520;

// With RGB channels (useful for rgba() usage)
$goldenrod-r: 218;
$goldenrod-g: 165;
$goldenrod-b: 32;

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