Spanish Bistre

HEX: #807532 | Modern Palette

On White
4.66:1
PASS
On Black
4.51:1
PASS

Color Specifications

HEX
#807532
RGB
128, 117, 50
HSL
51°, 60% ,50%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #787831
Protanopia #767632
Tritanopia #856F6F
Achromatopsia #747474

Frequently Asked Questions

Spanish Bistre (#807532) is a color with RGB(128, 117, 50) and HSL(51.54°, 60.94%, 50.2%).

#807532 pairs strongly with #323D80 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#807532 is suitable for Text, Button, Accent and works well with Warm styles.

The name Spanish Bistre is linked to bistre from French, meaning a brown pigment made from soot.

Name, History & Etymology

Origin Word bistre
Meaning a brown pigment made from soot
Language French
First Recorded Use 18th Century

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.

Similar Named Colors

Old Moss Green #867E36 ΔE 3.49
Bronze Yellow #737000 ΔE 6.08
Gold Fusion #85754E ΔE 6.89
Dark Tan #918151 ΔE 7.06

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);
}