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
Umber #635147 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Umber #635147 pairs with #475963 as its complementary color, and #476351 and #514763 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}