Umber
HEX: #635147 | Modern Palette
Color Specifications
#635147
99, 81, 71
21°, 28% ,38%
0, 18.18, 28.28, 61.18
About Umber
Umber (#635147) is a color with RGB(99, 81, 71) and HSL(21.43°, 28.28%, 38.82%). It is commonly associated with Earthy moods. In design, it fits Muted, Warm styles and is suitable for Text, Border, Print. Its complementary color is #475963, which creates strong contrast. Its triadic palette includes #476351 and #514763. The name comes from ombre (French).
- HEX: #635147
- RGB: 99, 81, 71
- HSL: 21.43°, 28.28%, 38.82%
- Mood: Earthy
- Style: Muted, Warm
- Use case: Text, Border, Print
- Complementary color: #475963
- Triadic colors: #476351, #514763
- The name comes from ombre (French).
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 #635147 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word "umber" for the pigment comes from the Italian 'terra d'ombra', meaning 'earth of shadow' or 'shadow earth', referring to the dark, earthy color and its original source region, Umbria, Italy. It entered English through French 'ombre'. The pigment itself is a natural earth pigment containing iron oxide and manganese oxide, giving it its characteristic brownish hue. It has been used since prehistoric times, found in cave paintings, and was widely used by Renaissance artists.
First Recorded Use
15th century
Cultural Associations
Umber pigments, particularly raw umber and burnt umber, have been fundamental to art across many cultures and periods. Raw umber is a greenish-brown, while burnt umber is a richer, reddish-brown created by heating raw umber. They are valued for their permanence, quick drying time, and versatility in creating shadows, flesh tones, and landscapes. In a broader sense, 'umber' can evoke a sense of earthiness, warmth, and natural depth.
Code Snippets
/* Background */
.element {
background-color: #635147;
}
/* Text */
.element {
color: #635147;
}
/* Border */
.element {
border: 1px solid #635147;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#635147,
#476B7F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#635147,
#476B7F
);
}
// SCSS variable
$umber: #635147;
// With RGB channels (useful for rgba() usage)
$umber-r: 99;
$umber-g: 81;
$umber-b: 71;
// Usage
.element {
background-color: $umber;
color: rgba($umber-r, $umber-g, $umber-b, 0.8);
}