Pastel Brown
HEX: #836953 | Modern Palette
Color Specifications
#836953
131, 105, 83
27°, 36% ,51%
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
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 #836953 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}