Old Gold
HEX: #CFB53B | Modern Palette
Color Specifications
#CFB53B
207, 181, 59
49°, 60% ,52%
0, 13, 71, 19
About Old Gold
Old Gold (#CFB53B) is a color with RGB(207, 181, 59) and HSL(49.5°, 60.7%, 52.2%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #3B55CF, which creates strong contrast. Its triadic palette includes #3BCFB5 and #B53BCF. The name comes from Old Gold (English).
- HEX: #CFB53B
- RGB: 207, 181, 59
- HSL: 49.5°, 60.7%, 52.2%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #3B55CF
- Triadic colors: #3BCFB5, #B53BCF
- The name comes from Old Gold (English).
Live Components
Color Palettes
Old Gold #CFB53B 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
Old Gold #CFB53B pairs with #3B55CF as its complementary color, and #3BCFB5 and #B53BCF 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 concept of 'gold' as a color has existed since antiquity, directly referencing the precious metal. As dyes and pigments became more sophisticated, and as fashion and design trends evolved, there was a need to differentiate various shades of gold. 'Old gold' emerged to describe a specific, often less vibrant, more antique-looking shade. It gained significant popularity during the Art Nouveau and Arts and Crafts movements, where natural and muted tones were favored. It has since remained a classic color, often associated with richness, tradition, and vintage aesthetics.
First Recorded Use
The term 'old gold' as a color descriptor became more common in the late 19th century, particularly in fashion, interior design, and art to distinguish it from brighter, more metallic golds.
Cultural Associations
Old gold is frequently used in heraldry, academic regalia (especially for certain disciplines like science or arts), and military decorations to signify honor, achievement, and tradition. In interior design, it often evokes a sense of classic elegance or vintage charm. It's also a popular color in autumn palettes due to its warm, earthy undertones.
Code Snippets
/* Background */
.element {
background-color: #CFB53B;
}
/* Text */
.element {
color: #CFB53B;
}
/* Border */
.element {
border: 1px solid #CFB53B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CFB53B,
#3B55CF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CFB53B,
#3B55CF
);
}
// SCSS variable
$old-gold: #CFB53B;
// With RGB channels (useful for rgba() usage)
$old-gold-r: 207;
$old-gold-g: 181;
$old-gold-b: 59;
// Usage
.element {
background-color: $old-gold;
color: rgba($old-gold-r, $old-gold-g, $old-gold-b, 0.8);
}