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
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 #856D4D from deepest shade to lightest tint.
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);
}