Vivid Gamboge
HEX: #FF9900 | Modern Palette
Color Specifications
#FF9900
255, 153, 0
36°, 100% ,100%
0, 40, 100, 0
About Vivid Gamboge
Vivid Gamboge (#FF9900) is a color with RGB(255, 153, 0) and HSL(36°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #0066FF, which creates strong contrast. Its triadic palette includes #00FF99 and #9900FF. The name comes from Gamboge (English (from Portuguese/Latin)).
- HEX: #FF9900
- RGB: 255, 153, 0
- HSL: 36°, 100%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #0066FF
- Triadic colors: #00FF99, #9900FF
- The name comes from Gamboge (English (from Portuguese/Latin)).
Live Components
Color Palettes
Vivid Gamboge #FF9900 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
Vivid Gamboge #FF9900 pairs with #0066FF as its complementary color, and #00FF99 and #9900FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Gamboge is a traditional pigment with a long history of use in Southeast Asian art, particularly in watercolor and lacquerware. It was brought to Europe by Dutch traders and quickly adopted by artists for its vibrant, transparent yellow-orange hue. It was popular in watercolor painting and as a lake pigment. The 'Vivid' descriptor emphasizes the bright, intense nature of this specific shade of gamboge.
First Recorded Use
The pigment was introduced to Europe in the early 17th century. The term 'gamboge' to describe the color and pigment became common around that time.
Cultural Associations
In some Asian cultures, yellow and orange hues can symbolize royalty, spirituality, or prosperity. Gamboge, as a natural pigment, would have been valued for its intensity and permanence in traditional art forms. In Western art, it was used to depict sunlight, gold, or rich fabrics.
Code Snippets
/* Background */
.element {
background-color: #FF9900;
}
/* Text */
.element {
color: #FF9900;
}
/* Border */
.element {
border: 1px solid #FF9900;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF9900,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF9900,
#FFFFFF
);
}
// SCSS variable
$vivid-gamboge: #FF9900;
// With RGB channels (useful for rgba() usage)
$vivid-gamboge-r: 255;
$vivid-gamboge-g: 153;
$vivid-gamboge-b: 0;
// Usage
.element {
background-color: $vivid-gamboge;
color: rgba($vivid-gamboge-r, $vivid-gamboge-g, $vivid-gamboge-b, 0.8);
}