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
Gold #FFD700 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Gold #FFD700 pairs with #0028FF as its complementary color, and #00FFD7 and #D700FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}