Golden Yellow
HEX: #FFDF00 | Modern Palette
Color Specifications
#FFDF00
255, 223, 0
52°, 100% ,50%
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
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 #FFDF00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}