Champagne

HEX: #FAD6A5 | Modern Palette

On White
1.38:1
FAIL
On Black
15.23:1
PASS

Color Specifications

HEX
#FAD6A5
RGB
250, 214, 165
HSL
34°, 89% ,81%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #E1E1A4
Protanopia #DADAA5
Tritanopia #FED1D1
Achromatopsia #DBDBDB

Frequently Asked Questions

Champagne (#FAD6A5) is a color with RGB(250, 214, 165) and HSL(34.6°, 89.5%, 81.4%).

#FAD6A5 pairs strongly with #A5C9FA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FAD6A5 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FAD6A5 is commonly associated with Playful.

The name Champagne is linked to Champagne from French, meaning Open country, fields (from Latin 'campania').

Name, History & Etymology

Origin Word Champagne
Meaning Open country, fields (from Latin 'campania')
Language French
First Recorded Use Late 17th Century (as a wine name)

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.

Similar Named Colors

Navajo White #FFDEAD ΔE 1.91
Peach Yellow #FADFAD ΔE 3.41
Wheat #F5DEB3 ΔE 4.21
Peach #FFE5B4 ΔE 4.34

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);
}