Fluorescent Yellow
HEX: #CCFF00 | Modern Palette
Color Specifications
#CCFF00
204, 255, 0
72°, 100% ,50%
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
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 #CCFF00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}