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