Vivid Amber
HEX: #CC9900 | Modern Palette
Color Specifications
#CC9900
204, 153, 0
45°, 100% ,80%
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
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 #CC9900 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}