Gamboge
HEX: #E49B0F | Modern Palette
Color Specifications
#E49B0F
228, 155, 15
39°, 87% ,47%
0, 32, 93, 11
About Gamboge
Gamboge (#E49B0F) is a color with RGB(228, 155, 15) and HSL(39.4°, 87.7%, 47.6%). 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 #0F58E4, which creates strong contrast. Its triadic palette includes #0FE49B and #9B0FE4. The name comes from gamboge (French).
- HEX: #E49B0F
- RGB: 228, 155, 15
- HSL: 39.4°, 87.7%, 47.6%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0F58E4
- Triadic colors: #0FE49B, #9B0FE4
- The name comes from gamboge (French).
Live Components
Color Palettes
Gamboge #E49B0F 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
Gamboge #E49B0F pairs with #0F58E4 as its complementary color, and #0FE49B and #9B0FE4 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 'gamboge' entered English from French, which in turn derived it from the Latin 'cambogium', referring to the Kingdom of Cambodia (Cambogia in Latin), where the resin was originally obtained. The resin itself, a vibrant yellow pigment, has been used for centuries in art (especially watercolor), traditional medicine, and as a dye. Its use as a pigment dates back to ancient times in Southeast Asia.
First Recorded Use
1634
Cultural Associations
Gamboge is a distinctive yellow-orange color, often associated with the pigment derived from the resin of trees in the Garcinia genus, particularly Garcinia hanburyi. It has been historically significant in Asian art, particularly in Buddhist art for coloring robes and manuscripts. In Western art, it was a popular watercolor pigment due to its transparency and intensity. However, its use has declined somewhat due to its toxicity (it acts as a strong purgative) and the availability of more stable and less toxic synthetic pigments.
Code Snippets
/* Background */
.element {
background-color: #E49B0F;
}
/* Text */
.element {
color: #E49B0F;
}
/* Border */
.element {
border: 1px solid #E49B0F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E49B0F,
#0F58E4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E49B0F,
#0F58E4
);
}
// SCSS variable
$gamboge: #E49B0F;
// With RGB channels (useful for rgba() usage)
$gamboge-r: 228;
$gamboge-g: 155;
$gamboge-b: 15;
// Usage
.element {
background-color: $gamboge;
color: rgba($gamboge-r, $gamboge-g, $gamboge-b, 0.8);
}