Light Brown
HEX: #B5651D | Modern Palette
Color Specifications
#B5651D
181, 101, 29
28°, 72% ,41%
0, 44, 84, 29
About Light Brown
Light Brown (#B5651D) is a color with RGB(181, 101, 29) and HSL(28.4°, 72.4%, 41.2%). It is commonly associated with Energetic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1D6DB5, which creates strong contrast. Its triadic palette includes #1DB565 and #651DB5. The name comes from Light Brown (English).
- HEX: #B5651D
- RGB: 181, 101, 29
- HSL: 28.4°, 72.4%, 41.2%
- Mood: Energetic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #1D6DB5
- Triadic colors: #1DB565, #651DB5
- The name comes from Light 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 #B5651D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'brown' as a color is ancient, often associated with earth, wood, and animal fur. The need to distinguish between darker and lighter shades of any color is also fundamental to human perception and language. 'Light brown' serves as a basic descriptor within the brown spectrum. Its usage has been consistent across centuries in English to describe hair, eyes, clothing, natural materials, and more. It's a fundamental color term rather than a recently coined or highly specialized one.
First Recorded Use
The individual words 'light' and 'brown' have very old origins in English. 'Brown' comes from Old English 'brun' and Proto-Germanic '*brunaz'. 'Light' comes from Old English 'leoht'. The combination 'light brown' as a descriptive phrase would have emerged as soon as both words existed and people needed to describe varying shades of brown. Precise first use as a compound color name is difficult to pinpoint but would predate standardized color naming conventions.
Cultural Associations
Light brown is a very common and neutral color. It is frequently associated with natural elements like sand, certain woods (e.g., pine, birch), some animal furs, and human hair/eye colors. Culturally, it often evokes feelings of warmth, naturalness, simplicity, and sometimes humility or earthiness. It lacks the strong symbolic associations of more vibrant colors and is generally perceived as pleasant and unobtrusive. In fashion and interior design, it's a versatile neutral.
Code Snippets
/* Background */
.element {
background-color: #B5651D;
}
/* Text */
.element {
color: #B5651D;
}
/* Border */
.element {
border: 1px solid #B5651D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B5651D,
#1D6DB5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B5651D,
#1D6DB5
);
}
// SCSS variable
$light-brown: #B5651D;
// With RGB channels (useful for rgba() usage)
$light-brown-r: 181;
$light-brown-g: 101;
$light-brown-b: 29;
// Usage
.element {
background-color: $light-brown;
color: rgba($light-brown-r, $light-brown-g, $light-brown-b, 0.8);
}