Deep Coffee
HEX: #704241 | Modern Palette
Color Specifications
#704241
112, 66, 65
1°, 41% ,43%
0, 41.07, 41.96, 56.08
About Deep Coffee
Deep Coffee (#704241) is a color with RGB(112, 66, 65) and HSL(1.28°, 41.96%, 43.92%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #416F70, which creates strong contrast. Its triadic palette includes #417042 and #424170. The name comes from Deep Coffee (English).
- HEX: #704241
- RGB: 112, 66, 65
- HSL: 1.28°, 41.96%, 43.92%
- Mood: Romantic
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #416F70
- Triadic colors: #417042, #424170
- The name comes from Deep Coffee (English).
Live Components
Color Palettes
Deep Coffee #704241 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
Deep Coffee #704241 pairs with #416F70 as its complementary color, and #417042 and #424170 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 concept of 'deep coffee' is more descriptive than a specific, formally defined drink. It evolved from the desire to articulate a coffee experience beyond simple 'dark roast' or 'strong.' As coffee culture matured, consumers and baristas sought terms to convey the complexity and intensity of certain brews. 'Deep' effectively communicates a multi-layered flavor profile, often associated with lower acidity, fuller body, and pronounced chocolatey or nutty notes. It's a term that gained popularity in the era of third-wave coffee, where detailed descriptions of flavor profiles became common.
First Recorded Use
The exact first use is difficult to pinpoint, but the term likely emerged in coffee shop menus and enthusiast discussions as a descriptor for more robust coffee options, gaining traction in the early 2000s with the rise of specialty coffee culture.
Cultural Associations
In contemporary coffee culture, 'deep coffee' often implies a sophisticated and serious approach to coffee. It's favored by those who appreciate a powerful, unadulterated coffee experience, often without milk or excessive sugar. It can also be associated with artisanal coffee shops that focus on high-quality, single-origin beans and precise brewing methods. The term evokes a sense of richness and depth, appealing to a demographic that values intensity and complexity in their beverages.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #704241;
}
/* Text */
.element {
color: #704241;
}
/* Border */
.element {
border: 1px solid #704241;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#704241,
#419D9F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#704241,
#419D9F
);
}
// SCSS variable
$deep-coffee: #704241;
// With RGB channels (useful for rgba() usage)
$deep-coffee-r: 112;
$deep-coffee-g: 66;
$deep-coffee-b: 65;
// Usage
.element {
background-color: $deep-coffee;
color: rgba($deep-coffee-r, $deep-coffee-g, $deep-coffee-b, 0.8);
}