French Bistre
HEX: #856D4D | Modern Palette
Color Specifications
#856D4D
133, 109, 77
34°, 42% ,52%
0, 18.05, 42.11, 47.84
About French Bistre
French Bistre (#856D4D) is a color with RGB(133, 109, 77) and HSL(34.29°, 42.11%, 52.16%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #4D6585, which creates strong contrast. Its triadic palette includes #4D856D and #6D4D85. The name comes from bistre (French).
- HEX: #856D4D
- RGB: 133, 109, 77
- HSL: 34.29°, 42.11%, 52.16%
- Mood: Earthy
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #4D6585
- Triadic colors: #4D856D, #6D4D85
- The name comes from bistre (French).
Live Components
Color Palettes
French Bistre #856D4D 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 Bistre #856D4D pairs with #4D6585 as its complementary color, and #4D856D and #6D4D85 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Bistre was widely used by Old Masters, especially during the Renaissance and Baroque periods, for ink drawings, washes, and underpaintings due to its warm, transparent brown tones. It was particularly favored for its quick drying time and subtle shading capabilities. Its popularity waned with the advent of more stable and varied synthetic pigments in the 19th century.
First Recorded Use
The term 'bistre' for the pigment itself dates back to the 18th century, though its use in art predates this formal naming.
Cultural Associations
This pigment is strongly associated with classical drawing techniques, particularly for sepia-toned sketches and monochromatic studies. Its earthy quality evokes a sense of antiquity and traditional artistry. The 'French' designation likely refers to a specific shade or a common usage within French artistic traditions.
Code Snippets
/* Background */
.element {
background-color: #856D4D;
}
/* Text */
.element {
color: #856D4D;
}
/* Border */
.element {
border: 1px solid #856D4D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#856D4D,
#527EB8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#856D4D,
#527EB8
);
}
// SCSS variable
$french-bistre: #856D4D;
// With RGB channels (useful for rgba() usage)
$french-bistre-r: 133;
$french-bistre-g: 109;
$french-bistre-b: 77;
// Usage
.element {
background-color: $french-bistre;
color: rgba($french-bistre-r, $french-bistre-g, $french-bistre-b, 0.8);
}