Bistre
HEX: #3D2B1F | Modern Palette
Color Specifications
#3D2B1F
61, 43, 31
24°, 49% ,23%
0, 29.51, 49.18, 76.08
About Bistre
Bistre (#3D2B1F) is a color with RGB(61, 43, 31) and HSL(24°, 49.18%, 23.92%). It is commonly associated with Bold, Earthy moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #1F313D, which creates strong contrast. Its triadic palette includes #1F3D2B and #2B1F3D. The name comes from bistre (French).
- HEX: #3D2B1F
- RGB: 61, 43, 31
- HSL: 24°, 49.18%, 23.92%
- Mood: Bold, Earthy
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #1F313D
- Triadic colors: #1F3D2B, #2B1F3D
- The name comes from bistre (French).
Live Components
Color Palettes
Bistre #3D2B1F 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
Bistre #3D2B1F pairs with #1F313D as its complementary color, and #1F3D2B and #2B1F3D 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 word "bistre" originates from the French word of the same spelling, which referred to a brown pigment made from the soot of wood smoke, especially beechwood. This pigment was widely used by old masters for ink drawings, washes, and underpaintings due to its warm, transparent brown tone. Its use predates the formal naming of the color in English, with the pigment itself being in use for centuries. The term entered English directly from French.
First Recorded Use
1704
Cultural Associations
Bistre was a popular choice for artists like Leonardo da Vinci and Rembrandt for their monochrome drawings and sketches, valued for its permanence and the rich, warm sepia-like tones it produced. It offered a more subtle and less stark alternative to black ink. In modern contexts, 'bistre' is primarily used in art and design to describe a specific shade of dark, yellowish-brown, often associated with vintage or antique aesthetics.
Code Snippets
/* Background */
.element {
background-color: #3D2B1F;
}
/* Text */
.element {
color: #3D2B1F;
}
/* Border */
.element {
border: 1px solid #3D2B1F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#3D2B1F,
#1F435B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#3D2B1F,
#1F435B
);
}
// SCSS variable
$bistre: #3D2B1F;
// With RGB channels (useful for rgba() usage)
$bistre-r: 61;
$bistre-g: 43;
$bistre-b: 31;
// Usage
.element {
background-color: $bistre;
color: rgba($bistre-r, $bistre-g, $bistre-b, 0.8);
}