Fluorescent Yellow

HEX: #CCFF00 | Modern Palette

On White
1.18:1
FAIL
On Black
17.87:1
PASS

Color Specifications

HEX
#CCFF00
RGB
204, 255, 0
HSL
72°, 100% ,50%
CMYK
20, 0, 100, 0

About Fluorescent Yellow

Fluorescent Yellow (#CCFF00) is a color with RGB(204, 255, 0) and HSL(72°, 100%, 50%). 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 #3300FF, which creates strong contrast. Its triadic palette includes Vivid Sky Blue (#00CCFF) and #FF00CC. The name comes from Fluorescent Yellow (English).

  • HEX: #CCFF00
  • RGB: 204, 255, 0
  • HSL: 72°, 100%, 50%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #3300FF
  • Triadic colors: Vivid Sky Blue (#00CCFF), #FF00CC
  • The name comes from Fluorescent Yellow (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 #CCFF00 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #F2F217
Protanopia #FAFA00
Tritanopia #DFF0F0
Achromatopsia #EDEDED

Frequently Asked Questions

Fluorescent Yellow (#CCFF00) is a color with RGB(204, 255, 0) and HSL(72°, 100%, 50%).

#CCFF00 pairs strongly with #3300FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#CCFF00 is commonly associated with Energetic, Bold.

The name Fluorescent Yellow is linked to Fluorescent Yellow from English, meaning A bright, vivid yellow color that appears to glow due to fluorescence..

Name, History & Etymology

Origin Word Fluorescent Yellow
Meaning A bright, vivid yellow color that appears to glow due to fluorescence.
Language English
First Recorded Use Mid-20th Century

History

Fluorescence itself was observed much earlier, but its application in pigments and dyes for creating 'day-glo' or 'neon' colors began in earnest in the 1930s and 40s. The Switzer brothers (Joseph and Robert) are often credited with pioneering fluorescent paints. These colors gained significant popularity in the 1960s counterculture, then in safety equipment, fashion, and advertising. 'Fluorescent Yellow' specifically became a standard for high-visibility applications due to its excellent contrast against most backgrounds.

First Recorded Use

The term 'fluorescent' for colors became common with the development and commercialization of fluorescent pigments and dyes, particularly after World War II. Specific color names like 'Fluorescent Yellow' would have emerged as these products became widely available.

Cultural Associations

Fluorescent Yellow is strongly associated with high visibility and safety (e.g., safety vests, road signs, athletic wear). It also carries connotations of energy, modernity, and sometimes a playful or edgy aesthetic, especially in fashion and graphic design. In the 1980s and 90s, it was a prominent color in rave culture and sportswear. It can evoke a sense of urgency or attention.

Similar Named Colors

Lime #BFFF00 ΔE 1.98
Lemon Lime #E3FF00 ΔE 3.91
Spring Bud #A7FC00 ΔE 5.10

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #CCFF00,
        #3300FF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #CCFF00,
        #3300FF
    );
}

// SCSS variable
$fluorescent-yellow: #CCFF00;

// With RGB channels (useful for rgba() usage)
$fluorescent-yellow-r: 204;
$fluorescent-yellow-g: 255;
$fluorescent-yellow-b: 0;

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