Golden Poppy
HEX: #FCC200 | Modern Palette
Color Specifications
#FCC200
252, 194, 0
46°, 100% ,49%
0, 23, 100, 1
About Golden Poppy
Golden Poppy (#FCC200) is a color with RGB(252, 194, 0) and HSL(46.2°, 100%, 49.4%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #003AFC, which creates strong contrast. Its triadic palette includes #00FCC2 and #C200FC. The name comes from Golden Poppy (English).
- HEX: #FCC200
- RGB: 252, 194, 0
- HSL: 46.2°, 100%, 49.4%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #003AFC
- Triadic colors: #00FCC2, #C200FC
- The name comes from Golden Poppy (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 #FCC200 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The California poppy is native to the western United States and Mexico. It was first documented by European explorers in the late 18th century. Its vibrant golden-orange color quickly made it a recognizable and beloved flower. It was designated as the state flower of California in 1903. The 'Golden Poppy' moniker emphasizes its most striking visual characteristic.
First Recorded Use
The California poppy (Eschscholzia californica) was first described by Adelbert von Chamisso in 1816. The common name 'Golden Poppy' likely emerged shortly thereafter as a descriptive term for its prominent color.
Cultural Associations
The Golden Poppy is a powerful symbol of California, representing its natural beauty, sunshine, and golden landscapes. It is often associated with spring and renewal. In some indigenous cultures, the poppy had medicinal uses. Its resilience and ability to thrive in various conditions also contribute to its symbolic strength.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #FCC200;
}
/* Text */
.element {
color: #FCC200;
}
/* Border */
.element {
border: 1px solid #FCC200;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FCC200,
#003AFC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FCC200,
#003AFC
);
}
// SCSS variable
$golden-poppy: #FCC200;
// With RGB channels (useful for rgba() usage)
$golden-poppy-r: 252;
$golden-poppy-g: 194;
$golden-poppy-b: 0;
// Usage
.element {
background-color: $golden-poppy;
color: rgba($golden-poppy-r, $golden-poppy-g, $golden-poppy-b, 0.8);
}