Chocolate
HEX: #D2691E | Modern Palette
Color Specifications
#D2691E
210, 105, 30
25°, 75% ,47%
0, 50, 86, 18
About Chocolate
Chocolate (#D2691E) is a color with RGB(210, 105, 30) and HSL(25°, 75%, 47.1%). It is commonly associated with Energetic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1E87D2, which creates strong contrast. Its triadic palette includes #1ED269 and #691ED2. The name comes from xocolātl (Nahuatl).
- HEX: #D2691E
- RGB: 210, 105, 30
- HSL: 25°, 75%, 47.1%
- Mood: Energetic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #1E87D2
- Triadic colors: #1ED269, #691ED2
- The name comes from xocolātl (Nahuatl).
Live Components
Color Palettes
Chocolate #D2691E 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
Chocolate #D2691E pairs with #1E87D2 as its complementary color, and #1ED269 and #691ED2 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Cacao beans were highly valued in ancient Mesoamerican cultures (Olmec, Maya, Aztec), used as currency and in rituals. The drink 'xocolātl' was often bitter, spiced with chili peppers, and consumed by nobility and warriors. It was brought to Europe by Spanish conquistadors in the 16th century, where it was sweetened and became popular. The industrial revolution led to solid chocolate bars and mass production in the 19th century.
First Recorded Use
Likely thousands of years ago, with evidence of cacao use dating back to 1900 BCE by Olmecs.
Cultural Associations
Chocolate holds significant cultural importance globally. In many Western cultures, it's associated with romance, celebrations (e.g., Easter, Valentine's Day), and comfort. In its origin cultures, it was a sacred drink. Today, it's a major global commodity, with diverse culinary applications from desserts to savory dishes.
Code Snippets
/* Background */
.element {
background-color: #D2691E;
}
/* Text */
.element {
color: #D2691E;
}
/* Border */
.element {
border: 1px solid #D2691E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D2691E,
#1E87D2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D2691E,
#1E87D2
);
}
// SCSS variable
$chocolate: #D2691E;
// With RGB channels (useful for rgba() usage)
$chocolate-r: 210;
$chocolate-g: 105;
$chocolate-b: 30;
// Usage
.element {
background-color: $chocolate;
color: rgba($chocolate-r, $chocolate-g, $chocolate-b, 0.8);
}