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
Golden Poppy #FCC200 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Golden Poppy #FCC200 pairs with #003AFC as its complementary color, and #00FCC2 and #C200FC in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}