Raw Umber
HEX: #826644 | Modern Palette
Color Specifications
#826644
130, 102, 68
32°, 47% ,50%
0, 21.54, 47.69, 49.02
About Raw Umber
Raw Umber (#826644) is a color with RGB(130, 102, 68) and HSL(32.9°, 47.69%, 50.98%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #446082, which creates strong contrast. Its triadic palette includes #448266 and #664482. The name comes from terra d'ombra (Italian).
- HEX: #826644
- RGB: 130, 102, 68
- HSL: 32.9°, 47.69%, 50.98%
- Mood: Earthy
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #446082
- Triadic colors: #448266, #664482
- The name comes from terra d'ombra (Italian).
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 #826644 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Umber is one of the oldest pigments, used since prehistoric times. Its name derives from 'terra d'ombra', meaning 'earth of shadow' in Italian, referring to the region of Umbria in Italy where it was historically mined. Raw umber is a natural earth pigment composed of iron oxide, manganese oxide, and clay. The presence of manganese oxide gives it a darker, cooler, and slightly greener undertone compared to other earth pigments like ochre or sienna. It was widely used by Old Masters for underpaintings, shadows, and glazes due to its excellent drying properties and versatility. Its use continued through various art movements, valued for its naturalistic qualities and permanence.
First Recorded Use
Early 16th century (as a pigment name)
Cultural Associations
Raw umber is often associated with natural landscapes, earthy tones, and a sense of groundedness. In art, it's frequently employed to depict shadows, create depth, and provide a stable base for other colors. Its muted, natural appearance has made it a staple in palettes for realism and naturalism. It doesn't carry the same symbolic weight as some brighter colors but is fundamental to creating realistic and atmospheric effects.
Code Snippets
/* Background */
.element {
background-color: #826644;
}
/* Text */
.element {
color: #826644;
}
/* Border */
.element {
border: 1px solid #826644;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#826644,
#467CBE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#826644,
#467CBE
);
}
// SCSS variable
$raw-umber: #826644;
// With RGB channels (useful for rgba() usage)
$raw-umber-r: 130;
$raw-umber-g: 102;
$raw-umber-b: 68;
// Usage
.element {
background-color: $raw-umber;
color: rgba($raw-umber-r, $raw-umber-g, $raw-umber-b, 0.8);
}