Vegas Gold
HEX: #C5B358 | Modern Palette
Color Specifications
#C5B358
197, 179, 88
50°, 48% ,55%
0, 9, 55, 23
About Vegas Gold
Vegas Gold (#C5B358) is a color with RGB(197, 179, 88) and HSL(50.1°, 48.4%, 55.9%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #586AC5, which creates strong contrast. Its triadic palette includes #58C5B3 and #B358C5. The name comes from Vegas Gold (English).
- HEX: #C5B358
- RGB: 197, 179, 88
- HSL: 50.1°, 48.4%, 55.9%
- Mood: Earthy
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #586AC5
- Triadic colors: #58C5B3, #B358C5
- The name comes from Vegas Gold (English).
Live Components
Color Palettes
Vegas Gold #C5B358 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
Vegas Gold #C5B358 pairs with #586AC5 as its complementary color, and #58C5B3 and #B358C5 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 color 'Vegas Gold' is a modern descriptive color name. It's not a historical pigment like 'ultramarine' or 'ochre'. Its association with Las Vegas stems from the city's opulent and often gold-accented architecture, casinos, and entertainment. The color evokes a sense of luxury, glamour, and the 'golden' opportunities often associated with the city. It gained particular prominence in sports team branding, notably with the Vegas Golden Knights NHL team, solidifying its recognition as a distinct shade of gold.
First Recorded Use
The exact first use is difficult to pinpoint, but the term likely emerged as a descriptive color name in the latter half of the 20th century, coinciding with the growth and popular imagery of Las Vegas.
Cultural Associations
Culturally, 'Vegas Gold' is strongly linked to the imagery of Las Vegas – a city known for entertainment, gambling, luxury, and a certain flamboyant aesthetic. It represents a specific kind of 'gold' that is more about glitz and showmanship than the deep, rich gold of ancient artifacts or fine jewelry. It's often seen in sports uniforms, branding, and decor aiming for a modern, energetic, and somewhat flashy gold look.
Code Snippets
/* Background */
.element {
background-color: #C5B358;
}
/* Text */
.element {
color: #C5B358;
}
/* Border */
.element {
border: 1px solid #C5B358;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C5B358,
#586AC5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C5B358,
#586AC5
);
}
// SCSS variable
$vegas-gold: #C5B358;
// With RGB channels (useful for rgba() usage)
$vegas-gold-r: 197;
$vegas-gold-g: 179;
$vegas-gold-b: 88;
// Usage
.element {
background-color: $vegas-gold;
color: rgba($vegas-gold-r, $vegas-gold-g, $vegas-gold-b, 0.8);
}