Rose Gold
HEX: #B76E79 | Modern Palette
Color Specifications
#B76E79
183, 110, 121
351°, 33% ,57%
0, 40, 34, 28
About Rose Gold
Rose Gold (#B76E79) is a color with RGB(183, 110, 121) and HSL(351°, 33.6%, 57.5%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #6EB7AC, which creates strong contrast. Its triadic palette includes #79B76E and #6E79B7. The name comes from Rose Gold (English).
- HEX: #B76E79
- RGB: 183, 110, 121
- HSL: 351°, 33.6%, 57.5%
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #6EB7AC
- Triadic colors: #79B76E, #6E79B7
- The name comes from Rose Gold (English).
Live Components
Color Palettes
Rose Gold #B76E79 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
Rose Gold #B76E79 pairs with #6EB7AC as its complementary color, and #79B76E and #6E79B7 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
While gold has been alloyed with copper for centuries to increase its hardness and alter its color, the distinct 'rose gold' color gained significant traction in Russia during the Biedermeier era (early 19th century). It was favored for its warmth and unique aesthetic. Its popularity waned somewhat in the mid-20th century but saw a major resurgence in the early 21st century, becoming a dominant trend in jewelry, fashion, and technology.
First Recorded Use
The concept of alloying gold with copper to achieve a reddish tint dates back centuries, but the specific term 'rose gold' and its widespread popularity in jewelry are often attributed to early 19th-century Russia. Carl Fabergé notably used it in his famous Fabergé eggs, sometimes referring to it as 'Russian Gold'.
Cultural Associations
Rose gold is widely associated with romance, femininity, and vintage elegance. Its warm tone is often seen as more flattering to various skin tones than traditional yellow or white gold. It has become a symbol of modern luxury and a popular choice for engagement rings, watches, and electronic devices, reflecting a blend of classic charm and contemporary style.
Code Snippets
/* Background */
.element {
background-color: #B76E79;
}
/* Text */
.element {
color: #B76E79;
}
/* Border */
.element {
border: 1px solid #B76E79;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B76E79,
#6EB7AC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B76E79,
#6EB7AC
);
}
// SCSS variable
$rose-gold: #B76E79;
// With RGB channels (useful for rgba() usage)
$rose-gold-r: 183;
$rose-gold-g: 110;
$rose-gold-b: 121;
// Usage
.element {
background-color: $rose-gold;
color: rgba($rose-gold-r, $rose-gold-g, $rose-gold-b, 0.8);
}