Golden Yellow

HEX: #FFDF00 | Modern Palette

On White
1.33:1
FAIL
On Black
15.81:1
PASS

Color Specifications

HEX
#FFDF00
RGB
255, 223, 0
HSL
52°, 100% ,50%
CMYK
0, 13, 100, 0

About Golden Yellow

Golden Yellow (#FFDF00) is a color with RGB(255, 223, 0) and HSL(52.5°, 100%, 50%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0020FF, which creates strong contrast. Its triadic palette includes #00FFDF and Psychedelic Purple (#DF00FF). The name comes from Golden Yellow (English).

  • HEX: #FFDF00
  • RGB: 255, 223, 0
  • HSL: 52.5°, 100%, 50%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #0020FF
  • Triadic colors: #00FFDF, Psychedelic Purple (#DF00FF)
  • The name comes from Golden Yellow (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 #FFDF00 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #E9E900
Protanopia #E3E304
Tritanopia #FFD2D2
Achromatopsia #DFDFDF

Frequently Asked Questions

Golden Yellow (#FFDF00) is a color with RGB(255, 223, 0) and HSL(52.5°, 100%, 50%).

#FFDF00 pairs strongly with #0020FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FFDF00 is commonly associated with Energetic, Bold.

The name Golden Yellow is linked to Golden Yellow from English, meaning A descriptive term combining 'golden' (resembling gold in color or luster) and 'yellow' (the color of ripe lemons or butter)..

Name, History & Etymology

Origin Word Golden Yellow
Meaning A descriptive term combining 'golden' (resembling gold in color or luster) and 'yellow' (the color of ripe lemons or butter).
Language English
First Recorded Use Late Middle English / Early Modern English (for 'golden' as a color descriptor, 'yellow' much older)

History

The color yellow has been significant across many cultures since antiquity. Associated with sunlight, gold, and ripeness, it often symbolizes happiness, energy, and wealth. In some contexts, it can also represent cowardice or deceit. The addition of 'golden' elevates the yellow, implying a richer, more lustrous, and often more positive connotation, directly linking it to the precious metal gold. This specific shade (#ffdf00) is a bright, warm yellow, very close to the color of pure gold.

First Recorded Use

While 'yellow' is an ancient color term, the specific compound 'golden yellow' as a distinct descriptor likely emerged as English vocabulary became more nuanced in describing shades. 'Golden' as an adjective for color dates back to the 14th century. The precise first documented use of 'golden yellow' as a compound is harder to pinpoint but would follow the establishment of both terms.

Cultural Associations

Often associated with autumn leaves, sunflowers, and ripe fruits. In many Asian cultures, yellow (especially golden yellow) is a sacred and imperial color, symbolizing royalty, power, and prosperity. In ancient Egypt, gold was considered the flesh of the gods, and golden yellow was highly revered. In Western art, golden yellow is frequently used to depict divine light, halos, and wealth. Can evoke feelings of warmth, optimism, and cheerfulness.

Similar Named Colors

Yellow (Pantone) #FEDF00 ΔE 0.24
Vivid Yellow #FFE302 ΔE 1.22
Banana Yellow #FFE135 ΔE 1.78
School Bus Yellow #FFD800 ΔE 2.20

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFDF00,
        #0020FF
    );
}

// SCSS variable
$golden-yellow: #FFDF00;

// With RGB channels (useful for rgba() usage)
$golden-yellow-r: 255;
$golden-yellow-g: 223;
$golden-yellow-b: 0;

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