Gold
HEX: #FFD700 | Modern Palette
Color Specifications
#FFD700
255, 215, 0
50°, 100% ,50%
0, 16, 100, 0
About Gold
Gold (#FFD700) is a color with RGB(255, 215, 0) and HSL(50.6°, 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 #0028FF, which creates strong contrast. Its triadic palette includes #00FFD7 and #D700FF. The name comes from *gulþą (Proto-Germanic).
- HEX: #FFD700
- RGB: 255, 215, 0
- HSL: 50.6°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0028FF
- Triadic colors: #00FFD7, #D700FF
- The name comes from *gulþą (Proto-Germanic).
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 #FFD700 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'gold' has deep roots in Germanic languages. It derives from Proto-Germanic '*gulþą', which itself is thought to come from a Proto-Indo-European root '*ghel-' meaning 'to shine' or 'to be yellow/green'. This connection highlights the metal's most striking visual characteristic. In Old English, it was 'gold', and its form has remained remarkably consistent through Middle English ('gold') to modern English. Its cognates are found across Germanic languages (e.g., German 'Gold', Dutch 'goud', Swedish 'guld'). The word has always referred to the precious metal, symbolizing wealth, value, and purity.
First Recorded Use
Before 900 AD
Cultural Associations
Gold holds immense cultural significance across nearly all civilizations throughout history. It has been used for coinage, jewelry, religious artifacts, and symbols of royalty and divinity. Its resistance to tarnish and its beautiful luster have made it a symbol of immortality, purity, and divine power. In many cultures, gold is associated with the sun. It plays a central role in mythology, folklore, and literature, often representing ultimate treasure, temptation, or divine favor. The color #ffd700 specifically evokes the bright, metallic sheen of pure gold.
Code Snippets
/* Background */
.element {
background-color: #FFD700;
}
/* Text */
.element {
color: #FFD700;
}
/* Border */
.element {
border: 1px solid #FFD700;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFD700,
#0028FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFD700,
#0028FF
);
}
// SCSS variable
$gold: #FFD700;
// With RGB channels (useful for rgba() usage)
$gold-r: 255;
$gold-g: 215;
$gold-b: 0;
// Usage
.element {
background-color: $gold;
color: rgba($gold-r, $gold-g, $gold-b, 0.8);
}