Spanish Bistre
HEX: #807532 | Modern Palette
Color Specifications
#807532
128, 117, 50
51°, 60% ,50%
0, 8.59, 60.94, 49.8
About Spanish Bistre
Spanish Bistre (#807532) is a color with RGB(128, 117, 50) and HSL(51.54°, 60.94%, 50.2%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #323D80, which creates strong contrast. Its triadic palette includes #328075 and #753280. The name comes from bistre (French).
- HEX: #807532
- RGB: 128, 117, 50
- HSL: 51.54°, 60.94%, 50.2%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #323D80
- Triadic colors: #328075, #753280
- 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 #807532 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'bistre' itself originates from French, referring to a brown pigment derived from the soot of wood smoke, particularly beechwood. It was widely used by old masters for ink and watercolor washes due to its warm, transparent brown tone. The addition of 'Spanish' to 'Spanish Bistre' likely refers to a specific shade or a perceived association with Spanish art or materials, rather than the pigment exclusively originating from Spain. It could imply a darker, richer, or more reddish-brown variant compared to a standard bistre, or perhaps a bistre used prominently in Spanish artistic traditions or by Spanish artists. Historically, bistre was a common drawing medium across Europe.
First Recorded Use
1704
Cultural Associations
While 'bistre' as a pigment has a long history in European art, the specific compound 'Spanish Bistre' might evoke a particular aesthetic or artistic period. Spanish art, especially during the Golden Age, is known for its rich, earthy palettes and dramatic use of chiaroscuro, where deep browns and blacks played a significant role. The name could have been a marketing term or a descriptive label to differentiate a particular shade that resonated with the visual characteristics of Spanish masterworks, even if the pigment's chemical composition was similar to other bistres.
Code Snippets
/* Background */
.element {
background-color: #807532;
}
/* Text */
.element {
color: #807532;
}
/* Border */
.element {
border: 1px solid #807532;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#807532,
#3348CD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#807532,
#3348CD
);
}
// SCSS variable
$spanish-bistre: #807532;
// With RGB channels (useful for rgba() usage)
$spanish-bistre-r: 128;
$spanish-bistre-g: 117;
$spanish-bistre-b: 50;
// Usage
.element {
background-color: $spanish-bistre;
color: rgba($spanish-bistre-r, $spanish-bistre-g, $spanish-bistre-b, 0.8);
}