Light Brown

HEX: #B5651D | Modern Palette

On White
4.34:1
FAIL
On Black
4.84:1
PASS

Color Specifications

HEX
#B5651D
RGB
181, 101, 29
HSL
28°, 72% ,41%
CMYK
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

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

Color Characteristics

Mood
Energetic
Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #838310
Protanopia #71711F
Tritanopia #B85F5F
Achromatopsia #797979

Frequently Asked Questions

Light Brown (#B5651D) is a color with RGB(181, 101, 29) and HSL(28.4°, 72.4%, 41.2%).

#B5651D pairs strongly with #1D6DB5 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#B5651D is commonly associated with Energetic.

The name Light Brown is linked to Light Brown from English, meaning A shade of brown that is not dark; having a low saturation of brown..

Name, History & Etymology

Origin Word Light Brown
Meaning A shade of brown that is not dark; having a low saturation of brown.
Language English
First Recorded Use Likely Old English or Middle English (as descriptive terms)

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.

Similar Named Colors

Liver (dogs) #B86D29 ΔE 2.62
Ruddy Brown #BB6528 ΔE 2.95
Alloy Orange #C46210 ΔE 3.57
Ginger #B06500 ΔE 3.83

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