Ginger
HEX: #B06500 | Modern Palette
Color Specifications
#B06500
176, 101, 0
34°, 100% ,34%
0, 43, 100, 31
About Ginger
Ginger (#B06500) is a color with RGB(176, 101, 0) and HSL(34.4°, 100%, 34.5%). It is commonly associated with Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #004BB0, which creates strong contrast. Its triadic palette includes #00B065 and #6500B0. The name comes from śṛṅgavera (Sanskrit).
- HEX: #B06500
- RGB: 176, 101, 0
- HSL: 34.4°, 100%, 34.5%
- Mood: Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #004BB0
- Triadic colors: #00B065, #6500B0
- The name comes from śṛṅgavera (Sanskrit).
Live Components
Color Palettes
Ginger #B06500 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
Ginger #B06500 pairs with #004BB0 as its complementary color, and #00B065 and #6500B0 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 'ginger' has a long and complex etymological journey. It originated from the Sanskrit 'śṛṅgavera'. This then passed into Ancient Greek as 'zingiberis' and subsequently into Latin as 'zingiber'. From Latin, it entered Old French as 'gingibre' and finally into Middle English as 'gingivere' or 'gyngevere', eventually evolving into the modern English 'ginger'. Ginger itself, the spice, has been cultivated and used for thousands of years, originating in Maritime Southeast Asia. It was one of the first spices to be exported from Asia, reaching Europe via the spice trade over two millennia ago.
First Recorded Use
Before 500 BCE
Cultural Associations
Ginger holds significant cultural importance across various societies. In traditional Chinese and Ayurvedic medicine, it's a staple for its medicinal properties, believed to aid digestion, reduce nausea, and fight inflammation. It's a common ingredient in Asian, Indian, and Caribbean cuisines, used in both sweet and savory dishes, from curries and stir-fries to gingerbread and ginger ale. In some cultures, it's also used in rituals or as a symbol of good luck.
Code Snippets
/* Background */
.element {
background-color: #B06500;
}
/* Text */
.element {
color: #B06500;
}
/* Border */
.element {
border: 1px solid #B06500;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B06500,
#004BB0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B06500,
#004BB0
);
}
// SCSS variable
$ginger: #B06500;
// With RGB channels (useful for rgba() usage)
$ginger-r: 176;
$ginger-g: 101;
$ginger-b: 0;
// Usage
.element {
background-color: $ginger;
color: rgba($ginger-r, $ginger-g, $ginger-b, 0.8);
}