Coffee
HEX: #6F4E37 | Modern Palette
Color Specifications
#6F4E37
111, 78, 55
24°, 50% ,43%
0, 29.73, 50.45, 56.47
About Coffee
Coffee (#6F4E37) is a color with RGB(111, 78, 55) and HSL(24.64°, 50.45%, 43.53%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #37586F, which creates strong contrast. Its triadic palette includes #376F4E and #4E376F. The name comes from قهوة (qahwah) (Arabic).
- HEX: #6F4E37
- RGB: 111, 78, 55
- HSL: 24.64°, 50.45%, 43.53%
- Mood: Earthy
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #37586F
- Triadic colors: #376F4E, #4E376F
- The name comes from قهوة (qahwah) (Arabic).
Live Components
Color Palettes
Coffee #6F4E37 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
Coffee #6F4E37 pairs with #37586F as its complementary color, and #376F4E and #4E376F 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 'coffee' has a fascinating journey. It originated in the Arabic word 'qahwah', which initially referred to a type of wine. Later, it came to denote the beverage we know today, likely due to its dark color and stimulating effects, similar to wine. From Arabic, it entered Ottoman Turkish as 'kahve'. From Turkish, it was borrowed into Italian as 'caffè', and then into other European languages, including French 'café' and English 'coffee'. The spread of the word closely mirrors the spread of coffee consumption itself from the Middle East to Europe and beyond.
First Recorded Use
The English word "coffee" is first attested around 1582, derived through Turkish and Italian from the Arabic.
Cultural Associations
Coffee has played a significant role in various cultures. In the Ottoman Empire, coffee houses became important social and intellectual centers. In Europe, particularly in the 17th and 18th centuries, coffee houses were hubs for political discourse, artistic discussions, and business dealings. The ritual of preparing and drinking coffee varies widely across cultures, from elaborate Turkish coffee ceremonies to Italian espresso culture and American drip coffee. It has inspired art, literature, and music, and remains a global commodity and cultural touchstone.
Code Snippets
/* Background */
.element {
background-color: #6F4E37;
}
/* Text */
.element {
color: #6F4E37;
}
/* Border */
.element {
border: 1px solid #6F4E37;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#6F4E37,
#3779A7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#6F4E37,
#3779A7
);
}
// SCSS variable
$coffee: #6F4E37;
// With RGB channels (useful for rgba() usage)
$coffee-r: 111;
$coffee-g: 78;
$coffee-b: 55;
// Usage
.element {
background-color: $coffee;
color: rgba($coffee-r, $coffee-g, $coffee-b, 0.8);
}