Burnt Umber
HEX: #8A3324 | Modern Palette
Color Specifications
#8A3324
138, 51, 36
8°, 73% ,54%
0, 63.04, 73.91, 45.88
About Burnt Umber
Burnt Umber (#8A3324) is a color with RGB(138, 51, 36) and HSL(8.82°, 73.91%, 54.12%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #247B8A, which creates strong contrast. Its triadic palette includes #248A33 and #33248A. The name comes from terra d'ombra (Italian).
- HEX: #8A3324
- RGB: 138, 51, 36
- HSL: 8.82°, 73.91%, 54.12%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #247B8A
- Triadic colors: #248A33, #33248A
- The name comes from terra d'ombra (Italian).
Live Components
Color Palettes
Burnt Umber #8A3324 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
Burnt Umber #8A3324 pairs with #247B8A as its complementary color, and #248A33 and #33248A in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Umber is a natural earth pigment composed of iron oxide and manganese oxide. It is one of the oldest pigments, used since prehistoric times. The name 'umber' comes from 'terra d'ombra' (earth of shadow) referring to Umbria, a region in Italy where it was historically mined. 'Burnt Umber' is created by calcining (heating) raw umber, which dehydrates the iron oxide and changes its oxidation state, resulting in a richer, warmer, reddish-brown hue compared to the cooler, greener raw umber. This process was known and utilized by artists during the Renaissance to achieve a wider range of earthy tones.
First Recorded Use
c. 16th century
Cultural Associations
Burnt Umber is a staple in art palettes, particularly for landscape, portraiture, and still life painting due to its versatility in depicting natural elements like soil, wood, and skin tones. It's often used for underpaintings, glazes, and creating deep shadows. Its warm, earthy quality evokes a sense of groundedness and natural beauty. It's also commonly found in interior design and fashion for its classic and sophisticated appeal.
Code Snippets
/* Background */
.element {
background-color: #8A3324;
}
/* Text */
.element {
color: #8A3324;
}
/* Border */
.element {
border: 1px solid #8A3324;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#8A3324,
#34C7E0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#8A3324,
#34C7E0
);
}
// SCSS variable
$burnt-umber: #8A3324;
// With RGB channels (useful for rgba() usage)
$burnt-umber-r: 138;
$burnt-umber-g: 51;
$burnt-umber-b: 36;
// Usage
.element {
background-color: $burnt-umber;
color: rgba($burnt-umber-r, $burnt-umber-g, $burnt-umber-b, 0.8);
}