Champagne
HEX: #FAD6A5 | Modern Palette
Color Specifications
#FAD6A5
250, 214, 165
34°, 89% ,81%
0, 14, 34, 2
About Champagne
Champagne (#FAD6A5) is a color with RGB(250, 214, 165) and HSL(34.6°, 89.5%, 81.4%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #A5C9FA, which creates strong contrast. Its triadic palette includes #A5FAD6 and #D6A5FA. The name comes from Champagne (French).
- HEX: #FAD6A5
- RGB: 250, 214, 165
- HSL: 34.6°, 89.5%, 81.4%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #A5C9FA
- Triadic colors: #A5FAD6, #D6A5FA
- The name comes from Champagne (French).
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 #FAD6A5 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The Champagne region in France has a long history of winemaking, initially producing still wines. The accidental discovery of secondary fermentation in the bottle, leading to effervescence, is often attributed to Dom Pérignon in the late 17th century, though sparkling wines were likely being made before his time. Early sparkling wines were often unstable and dangerous due to exploding bottles. Over time, techniques for controlling fermentation, strengthening bottles, and developing the 'méthode champenoise' (traditional method) were perfected. By the 19th century, Champagne had become a symbol of luxury and celebration. The name 'Champagne' is now legally protected under EU law and other international agreements, meaning only sparkling wine produced in the Champagne region of France, according to strict regulations, can bear the name.
First Recorded Use
The term 'Champagne' for the sparkling wine specifically refers to the region in France where it is produced. While the region itself has been known as Champagne for centuries, the sparkling wine we recognize today began to develop in the late 17th and early 18th centuries. The name of the region was then applied to its distinctive wine.
Cultural Associations
Champagne is globally recognized as a symbol of celebration, luxury, and special occasions. It is traditionally used for toasts at weddings, New Year's Eve, christenings, and sporting victories. The act of 'sabering' a bottle of Champagne (opening it with a saber) is a dramatic tradition. Its association with prestige has led to its frequent appearance in film, literature, and art as an indicator of wealth and sophistication. The color #fad6a5, often referred to as 'Champagne' or 'Champagne Gold', evokes the pale, golden hue of the beverage itself, further cementing its luxurious image.
Code Snippets
/* Background */
.element {
background-color: #FAD6A5;
}
/* Text */
.element {
color: #FAD6A5;
}
/* Border */
.element {
border: 1px solid #FAD6A5;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FAD6A5,
#A5C9FA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FAD6A5,
#A5C9FA
);
}
// SCSS variable
$champagne: #FAD6A5;
// With RGB channels (useful for rgba() usage)
$champagne-r: 250;
$champagne-g: 214;
$champagne-b: 165;
// Usage
.element {
background-color: $champagne;
color: rgba($champagne-r, $champagne-g, $champagne-b, 0.8);
}