Vivid Gamboge

HEX: #FF9900 | Modern Palette

On White
2.14:1
FAIL
On Black
9.81:1
PASS

Color Specifications

HEX
#FF9900
RGB
255, 153, 0
HSL
36°, 100% ,100%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #BEBE00
Protanopia #A8A80A
Tritanopia #FF9090
Achromatopsia #B1B1B1

Frequently Asked Questions

Vivid Gamboge (#FF9900) is a color with RGB(255, 153, 0) and HSL(36°, 100%, 100%).

#FF9900 pairs strongly with #0066FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF9900 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FF9900 is commonly associated with Playful.

The name Vivid Gamboge is linked to Gamboge from English (from Portuguese/Latin), meaning A yellow-orange pigment derived from the resin of trees in the Garcinia genus, native to Southeast Asia. The word 'gamboge' itself comes from 'Cambodia', the region where it was originally sourced..

Name, History & Etymology

Origin Word Gamboge
Meaning A yellow-orange pigment derived from the resin of trees in the Garcinia genus, native to Southeast Asia. The word 'gamboge' itself comes from 'Cambodia', the region where it was originally sourced.
Language English (from Portuguese/Latin)
First Recorded Use 17th Century

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.

Similar Named Colors

Orange (RYB) #FB9902 ΔE 0.86
Orange Peel #FF9F00 ΔE 2.11
Vivid Orange Peel #FFA000 ΔE 2.46
Princeton Orange #FF8F00 ΔE 3.44

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);
}