Vivid Amber

HEX: #CC9900 | Modern Palette

On White
2.58:1
FAIL
On Black
8.12:1
PASS

Color Specifications

HEX
#CC9900
RGB
204, 153, 0
HSL
45°, 100% ,80%
CMYK
0, 25, 100, 20

About Vivid Amber

Vivid Amber (#CC9900) is a color with RGB(204, 153, 0) and HSL(45°, 100%, 80%). 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 #0033CC, which creates strong contrast. Its triadic palette includes Caribbean Green (#00CC99) and #9900CC. The name comes from Vivid Amber (English).

  • HEX: #CC9900
  • RGB: 204, 153, 0
  • HSL: 45°, 100%, 80%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #0033CC
  • Triadic colors: Caribbean Green (#00CC99), #9900CC
  • The name comes from Vivid Amber (English).

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 #CC9900 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #AAAA00
Protanopia #A0A004
Tritanopia #D29090
Achromatopsia #A1A1A1

Frequently Asked Questions

Vivid Amber (#CC9900) is a color with RGB(204, 153, 0) and HSL(45°, 100%, 80%).

#CC9900 pairs strongly with #0033CC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#CC9900 is commonly associated with Playful.

The name Vivid Amber is linked to Vivid Amber from English, meaning A bright, intense shade of amber, reminiscent of the gemstone..

Name, History & Etymology

Origin Word Vivid Amber
Meaning A bright, intense shade of amber, reminiscent of the gemstone.
Language English
First Recorded Use Late 20th Century

History

The word 'vivid' comes from Latin 'vividus' meaning 'lively, animated,' from 'vivus' meaning 'alive.' The word 'amber' comes from Arabic 'anbar' referring to ambergris, and later applied to fossilized tree resin due to similar appearance. The combination 'Vivid Amber' is a descriptive color name, not a historical pigment name. It defines a specific hue within the broader amber spectrum, emphasizing its brightness and saturation.

First Recorded Use

The specific color name 'Vivid Amber' likely emerged with the proliferation of digital color systems and standardized color naming conventions (e.g., X11 color names, web colors) in the late 20th century. While 'vivid' and 'amber' have much older origins, their combination as a precise color name is more recent.

Cultural Associations

Amber as a color is often associated with warmth, autumn, sunsets, and the gemstone itself, which carries symbolism of protection, healing, and ancient wisdom. 'Vivid Amber' intensifies these associations, suggesting a vibrant and energetic quality. It might be used in design to evoke feelings of warmth, richness, or a lively natural glow.

Similar Named Colors

Lemon Curry #CCA01D ΔE 2.55
Goldenrod #DAA520 ΔE 3.64
Satin Sheen Gold #CBA135 ΔE 3.71
Urobilin #E1AD21 ΔE 5.71

Code Snippets

/* Background */
.element {
    background-color: #CC9900;
}

/* Text */
.element {
    color: #CC9900;
}

/* Border */
.element {
    border: 1px solid #CC9900;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #CC9900,
        #99B3FF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #CC9900,
        #99B3FF
    );
}

// SCSS variable
$vivid-amber: #CC9900;

// With RGB channels (useful for rgba() usage)
$vivid-amber-r: 204;
$vivid-amber-g: 153;
$vivid-amber-b: 0;

// Usage
.element {
    background-color: $vivid-amber;
    color: rgba($vivid-amber-r, $vivid-amber-g, $vivid-amber-b, 0.8);
}