Chocolate (traditional)
HEX: #7B3F00 | Modern Palette
Color Specifications
#7B3F00
123, 63, 0
30°, 100% ,48%
0, 48.78, 100, 51.76
About Chocolate (traditional)
Chocolate (traditional) (#7B3F00) is a color with RGB(123, 63, 0) and HSL(30.73°, 100%, 48.24%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #003C7B, which creates strong contrast. Its triadic palette includes #007B3F and #3F007B. The name comes from xocolātl (Nahuatl).
- HEX: #7B3F00
- RGB: 123, 63, 0
- HSL: 30.73°, 100%, 48.24%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #003C7B
- Triadic colors: #007B3F, #3F007B
- The name comes from xocolātl (Nahuatl).
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 #7B3F00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Chocolate, in its traditional form, originated in Mesoamerica. The Olmecs, Maya, and Aztecs all cultivated cacao beans and prepared a bitter, often spiced, beverage from them. This drink, 'xocolātl' in Nahuatl, was consumed for ritualistic purposes, as a medicine, and as a luxury item. Cacao beans were also used as a form of currency. When chocolate was introduced to Europe in the 16th century, it was initially consumed as a beverage, often sweetened and flavored. The solid form of chocolate, as we know it today, developed much later in the 19th century with advancements in processing techniques.
First Recorded Use
c. 1900 BCE (earliest evidence of cacao use)
Cultural Associations
In ancient Mesoamerican cultures, chocolate was highly valued and held significant spiritual and cultural importance. It was associated with deities, fertility, and life. It was often consumed during ceremonies, sacrifices, and as a symbol of status. The preparation and consumption of chocolate were deeply embedded in the social and religious fabric of these societies. Even today, chocolate retains cultural significance in many parts of the world, often associated with celebrations, comfort, and indulgence.
Code Snippets
/* Background */
.element {
background-color: #7B3F00;
}
/* Text */
.element {
color: #7B3F00;
}
/* Border */
.element {
border: 1px solid #7B3F00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#7B3F00,
#0078F6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#7B3F00,
#0078F6
);
}
// SCSS variable
$chocolate-(traditional): #7B3F00;
// With RGB channels (useful for rgba() usage)
$chocolate-(traditional)-r: 123;
$chocolate-(traditional)-g: 63;
$chocolate-(traditional)-b: 0;
// Usage
.element {
background-color: $chocolate-(traditional);
color: rgba($chocolate-(traditional)-r, $chocolate-(traditional)-g, $chocolate-(traditional)-b, 0.8);
}