French Beige
HEX: #A67B5B | Modern Palette
Color Specifications
#A67B5B
166, 123, 91
25°, 29% ,50%
0, 26, 45, 35
About French Beige
French Beige (#A67B5B) is a color with RGB(166, 123, 91) and HSL(25.6°, 29.6%, 50.4%). It is commonly associated with Earthy moods. In design, it fits Muted, Warm styles and is suitable for Text, Border, Print. Its complementary color is #5B86A6, which creates strong contrast. Its triadic palette includes #5BA67B and #7B5BA6. The name comes from Beige (French/English).
- HEX: #A67B5B
- RGB: 166, 123, 91
- HSL: 25.6°, 29.6%, 50.4%
- Mood: Earthy
- Style: Muted, Warm
- Use case: Text, Border, Print
- Complementary color: #5B86A6
- Triadic colors: #5BA67B, #7B5BA6
- The name comes from Beige (French/English).
Live Components
Color Palettes
French Beige #A67B5B 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
French Beige #A67B5B pairs with #5B86A6 as its complementary color, and #5BA67B and #7B5BA6 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 beige, derived from the French word for natural wool, has been used in fashion and interiors for centuries in its raw form. As a named color, it gained popularity in the 19th century. 'French Beige' specifically doesn't have a singular, documented historical origin like a royal decree or a famous painting. Instead, it's a descriptive term that likely evolved in the fashion, textile, and paint industries to denote a specific, often sophisticated, shade of beige. The 'French' prefix often implies a certain classicism, elegance, or a particular nuance of the color that might be associated with French aesthetics.
First Recorded Use
The word "beige" itself entered the English language from French in the mid-19th century (around 1855). The specific descriptor "French Beige" likely emerged later as a marketing or descriptive term to differentiate a particular shade of beige, possibly one with a slightly pink, grey, or yellow undertone, from other beiges, or to evoke a sense of French elegance and style.
Cultural Associations
Beige, in general, is associated with neutrality, calmness, and sophistication. 'French Beige' often carries an additional connotation of understated elegance, classic style, and a certain timeless chic, aligning with perceptions of French fashion and interior design. It's often seen as a more refined or 'cooler' beige than some warmer, more yellow-toned beiges, making it popular in high-end fashion, cosmetics, and home decor for creating serene and luxurious environments.
Code Snippets
/* Background */
.element {
background-color: #A67B5B;
}
/* Text */
.element {
color: #A67B5B;
}
/* Border */
.element {
border: 1px solid #A67B5B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A67B5B,
#5B86A6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A67B5B,
#5B86A6
);
}
// SCSS variable
$french-beige: #A67B5B;
// With RGB channels (useful for rgba() usage)
$french-beige-r: 166;
$french-beige-g: 123;
$french-beige-b: 91;
// Usage
.element {
background-color: $french-beige;
color: rgba($french-beige-r, $french-beige-g, $french-beige-b, 0.8);
}