Dirt
HEX: #9B7653 | Modern Palette
Color Specifications
#9B7653
155, 118, 83
29°, 46% ,60%
0, 23.87, 46.45, 39.22
About Dirt
Dirt (#9B7653) is a color with RGB(155, 118, 83) and HSL(29.17°, 46.45%, 60.78%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #53789B, which creates strong contrast. Its triadic palette includes #539B76 and #76539B. The name comes from *durþą (Proto-Germanic).
- HEX: #9B7653
- RGB: 155, 118, 83
- HSL: 29.17°, 46.45%, 60.78%
- Mood: Earthy
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #53789B
- Triadic colors: #539B76, #76539B
- The name comes from *durþą (Proto-Germanic).
Live Components
Color Palettes
Dirt #9B7653 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
Dirt #9B7653 pairs with #53789B as its complementary color, and #539B76 and #76539B 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 term 'dirt' has a long linguistic history, evolving from Proto-Germanic to Old Norse 'dyrtr' and Old English 'dyrt.' Initially denoting excrement or mud, its meaning broadened to encompass loose earth or soil. The use of 'dirt' as a color name is a modern, descriptive association with the common appearance of soil.
First Recorded Use
The word 'dirt' entered Old English as 'dyrt,' signifying 'filth' or 'mire.' Its application as a color descriptor for a specific brown hue is more recent and informal.
Cultural Associations
Culturally, 'dirt' is universally associated with earth, agriculture, and the natural world, often carrying connotations of grounding or grubbiness. In art and design, 'dirt colors' are frequently used to evoke natural landscapes, rustic aesthetics, or a sense of age and wear. Its informal nature as a color name reflects its direct, everyday association.
Code Snippets
/* Background */
.element {
background-color: #9B7653;
}
/* Text */
.element {
color: #9B7653;
}
/* Border */
.element {
border: 1px solid #9B7653;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9B7653,
#6D9CC9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9B7653,
#6D9CC9
);
}
// SCSS variable
$dirt: #9B7653;
// With RGB channels (useful for rgba() usage)
$dirt-r: 155;
$dirt-g: 118;
$dirt-b: 83;
// Usage
.element {
background-color: $dirt;
color: rgba($dirt-r, $dirt-g, $dirt-b, 0.8);
}