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