Brown (traditional)
HEX: #964B00 | Modern Palette
Color Specifications
#964B00
150, 75, 0
30°, 100% ,58%
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
Color Palettes
Brown (traditional) #964B00 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
Brown (traditional) #964B00 pairs with #004B96 as its complementary color, and #00964B and #4B0096 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 '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.
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);
}