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