Pale Brown
HEX: #987654 | Modern Palette
Color Specifications
#987654
152, 118, 84
30°, 44% ,59%
0, 22.37, 44.74, 40.39
About Pale Brown
Pale Brown (#987654) is a color with RGB(152, 118, 84) and HSL(30°, 44.74%, 59.61%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #547698, which creates strong contrast. Its triadic palette includes #549876 and #765498. The name comes from Pale Brown (English).
- HEX: #987654
- RGB: 152, 118, 84
- HSL: 30°, 44.74%, 59.61%
- Mood: Earthy
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #547698
- Triadic colors: #549876, #765498
- The name comes from Pale Brown (English).
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 #987654 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'pale' comes from Old French 'pale' (meaning 'pale, wan, faint'), ultimately from Latin 'pallidus'. 'Brown' comes from Old English 'brūn', from Proto-Germanic '*brūnaz', related to words for 'burning' or 'shining' (referring to a reddish-brown hue). The combination 'pale brown' is a straightforward descriptive compound, indicating a less saturated or lighter version of the base color brown. Its usage has been consistent in English to describe a wide range of natural objects (e.g., wood, soil, animal fur) and manufactured goods.
First Recorded Use
While 'pale' and 'brown' as individual color descriptors have much older roots, their combination 'pale brown' as a specific compound descriptor likely became common as color vocabulary expanded and became more nuanced, particularly from the 15th-17th centuries onwards. Pinpointing an exact 'first use' for such a descriptive compound is challenging without extensive corpus linguistics, but the concepts were certainly present.
Cultural Associations
Pale brown is a very common color in nature, often associated with earth, wood, sand, and dried vegetation. It evokes feelings of naturalness, warmth, and sometimes humility or simplicity. In fashion and interior design, it's considered a neutral and versatile color. It can also be associated with vintage aesthetics or rustic charm. The specific shade #987654 is a medium-light, slightly desaturated brown, often found in natural materials.
Code Snippets
/* Background */
.element {
background-color: #987654;
}
/* Text */
.element {
color: #987654;
}
/* Border */
.element {
border: 1px solid #987654;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#987654,
#6A98C6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#987654,
#6A98C6
);
}
// SCSS variable
$pale-brown: #987654;
// With RGB channels (useful for rgba() usage)
$pale-brown-r: 152;
$pale-brown-g: 118;
$pale-brown-b: 84;
// Usage
.element {
background-color: $pale-brown;
color: rgba($pale-brown-r, $pale-brown-g, $pale-brown-b, 0.8);
}