Pastel Brown

HEX: #836953 | Modern Palette

On White
5.11:1
PASS
On Black
4.11:1
FAIL

Color Specifications

HEX
#836953
RGB
131, 105, 83
HSL
27°, 36% ,51%
CMYK
0, 19.85, 36.64, 48.63

About Pastel Brown

Pastel Brown (#836953) is a color with RGB(131, 105, 83) and HSL(27.5°, 36.64%, 51.37%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #536D83, which creates strong contrast. Its triadic palette includes #538369 and #695383. The name comes from Pastel Brown (English).

  • HEX: #836953
  • RGB: 131, 105, 83
  • HSL: 27.5°, 36.64%, 51.37%
  • Mood: Earthy
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #536D83
  • Triadic colors: #538369, #695383
  • The name comes from Pastel 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 #836953 from deepest shade to lightest tint.

Color Characteristics

Mood
Earthy
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #717152
Protanopia #6C6C53
Tritanopia #856767
Achromatopsia #6E6E6E

Frequently Asked Questions

Pastel Brown (#836953) is a color with RGB(131, 105, 83) and HSL(27.5°, 36.64%, 51.37%).

#836953 pairs strongly with #536D83 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#836953 is suitable for Text, Logo, Print and works well with Warm styles.

#836953 is commonly associated with Earthy.

The name Pastel Brown is linked to Pastel Brown from English, meaning A light, soft, and desaturated shade of brown..

Name, History & Etymology

Origin Word Pastel Brown
Meaning A light, soft, and desaturated shade of brown.
Language English
First Recorded Use 20th Century

History

The term 'pastel' itself comes from the art medium, referring to the soft, muted colors achieved with pastel sticks. As a color descriptor, 'pastel' became popular in the early 20th century, particularly in fashion and interior design, to describe colors that were less saturated and often lighter than their primary counterparts. 'Pastel Brown' would have emerged as a way to specify a brown that fit this aesthetic – not a deep, rich brown, but one that was softened, perhaps with a hint of grey or a lighter base. It gained traction as part of broader trends favoring softer color palettes.

First Recorded Use

Early to Mid 20th Century (as a specific color descriptor)

Cultural Associations

Pastel colors, including pastel brown, are often associated with softness, tranquility, innocence, and vintage aesthetics. In fashion, pastel browns can evoke a sense of understated elegance or a retro vibe, particularly from the mid-century. In interior design, they contribute to calming and inviting spaces. They are less common in high-contrast or bold designs and more often found in palettes aiming for harmony and subtlety.

Similar Named Colors

Dark Brown-tangelo #88654E ΔE 3.51
Raw Umber #826644 ΔE 4.45
French Bistre #856D4D ΔE 4.50
Coyote Brown #81613E ΔE 5.26

Code Snippets

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

/* Text */
.element {
    color: #836953;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #836953,
        #5687B0
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #836953,
        #5687B0
    );
}

// SCSS variable
$pastel-brown: #836953;

// With RGB channels (useful for rgba() usage)
$pastel-brown-r: 131;
$pastel-brown-g: 105;
$pastel-brown-b: 83;

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