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
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 #9B7653 from deepest shade to lightest tint.
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);
}