Brown (traditional)

HEX: #964B00 | Modern Palette

On White
6.36:1
PASS
On Black
3.30:1
FAIL

Color Specifications

HEX
#964B00
RGB
150, 75, 0
HSL
30°, 100% ,58%
CMYK
0, 50, 100, 41.18

About Brown (traditional)

Brown (traditional) (#964B00) is a color with RGB(150, 75, 0) and HSL(30°, 100%, 58.82%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #004B96, which creates strong contrast. Its triadic palette includes #00964B and #4B0096. The name comes from Brown (English).

  • HEX: #964B00
  • RGB: 150, 75, 0
  • HSL: 30°, 100%, 58.82%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #004B96
  • Triadic colors: #00964B, #4B0096
  • The name comes from Brown (English).

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 #964B00 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #686800
Protanopia #575703
Tritanopia #984646
Achromatopsia #5F5F5F

Frequently Asked Questions

Brown (traditional) (#964B00) is a color with RGB(150, 75, 0) and HSL(30°, 100%, 58.82%).

#964B00 pairs strongly with #004B96 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#964B00 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#964B00 is commonly associated with Energetic, Bold.

The name Brown (traditional) is linked to Brown from English, meaning A color produced by mixing red, yellow, and black pigments, or by a combination of red and yellow with a small amount of blue..

Name, History & Etymology

Origin Word Brown
Meaning A color produced by mixing red, yellow, and black pigments, or by a combination of red and yellow with a small amount of blue.
Language English
First Recorded Use Old English

History

The word 'brown' comes from Old English 'brun', which itself is derived from Proto-Germanic '*brūnaz'. This Proto-Germanic root is also the source of similar words in other Germanic languages, such as German 'braun' and Dutch 'bruin'. The color brown has been used in art and textiles for millennia, often derived from natural pigments like ochre, umber, and sienna, or from organic sources like plant dyes and animal secretions. 'Traditional Brown' often refers to a rich, earthy tone, reminiscent of natural wood, soil, or leather.

First Recorded Use

Before 1000 AD (as 'brun')

Cultural Associations

Brown is widely associated with nature, earth, wood, and autumn. It often evokes feelings of warmth, comfort, stability, and reliability. In many cultures, brown is seen as a practical and down-to-earth color. It can also symbolize humility and simplicity. However, in some contexts, it can be associated with dirtiness or dullness. In fashion, it's considered a classic neutral. In art, various shades of brown are fundamental for depicting natural scenes, skin tones, and shadows.

Similar Named Colors

Saddle Brown #8B4513 ΔE 4.38
Windsor Tan #A75502 ΔE 4.55
Russet #80461B ΔE 6.33

Code Snippets

/* Background */
.element {
    background-color: #964B00;
}

/* Text */
.element {
    color: #964B00;
}

/* Border */
.element {
    border: 1px solid #964B00;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #964B00,
        #2D96FF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #964B00,
        #2D96FF
    );
}

// SCSS variable
$brown-(traditional): #964B00;

// With RGB channels (useful for rgba() usage)
$brown-(traditional)-r: 150;
$brown-(traditional)-g: 75;
$brown-(traditional)-b: 0;

// Usage
.element {
    background-color: $brown-(traditional);
    color: rgba($brown-(traditional)-r, $brown-(traditional)-g, $brown-(traditional)-b, 0.8);
}