Golden Poppy

HEX: #FCC200 | Modern Palette

On White
1.63:1
FAIL
On Black
12.86:1
PASS

Color Specifications

HEX
#FCC200
RGB
252, 194, 0
HSL
46°, 100% ,49%
CMYK
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

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

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #D5D500
Protanopia #C9C906
Tritanopia #FFB7B7
Achromatopsia #CACACA

Frequently Asked Questions

Golden Poppy (#FCC200) is a color with RGB(252, 194, 0) and HSL(46.2°, 100%, 49.4%).

#FCC200 pairs strongly with #003AFC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FCC200 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#FCC200 is commonly associated with Energetic, Bold.

The name Golden Poppy is linked to Golden Poppy from English, meaning A poppy that is golden in color..

Name, History & Etymology

Origin Word Golden Poppy
Meaning A poppy that is golden in color.
Language English
First Recorded Use Early 19th Century

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

Mikado Yellow #FFC40C ΔE 0.60
Amber #FFBF00 ΔE 1.66
Saffron #F4C430 ΔE 2.70
Sunglow #FFCC33 ΔE 2.86

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