Selective Yellow
HEX: #FFBA00 | Modern Palette
Color Specifications
#FFBA00
255, 186, 0
43°, 100% ,50%
0, 27, 100, 0
About Selective Yellow
Selective Yellow (#FFBA00) is a color with RGB(255, 186, 0) and HSL(43.8°, 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 #0045FF, which creates strong contrast. Its triadic palette includes #00FFBA and #BA00FF. The name comes from Selective Yellow (English).
- HEX: #FFBA00
- RGB: 255, 186, 0
- HSL: 43.8°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0045FF
- Triadic colors: #00FFBA, #BA00FF
- The name comes from Selective Yellow (English).
Live Components
Color Palettes
Selective Yellow #FFBA00 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
Selective Yellow #FFBA00 pairs with #0045FF as its complementary color, and #00FFBA and #BA00FF 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 use of yellow headlamps gained prominence in France, where it was mandated for all vehicles from 1937 to 1993. The rationale was that yellow light caused less glare for oncoming drivers and improved visibility in fog, rain, and snow by reducing the scattering of blue light components. Scientific studies on its effectiveness have yielded mixed results, with some suggesting minimal or no advantage over white light, and others pointing to a psychological benefit or specific advantages in certain conditions. Despite the debate, its distinctive appearance became a cultural identifier for French cars. Most countries, including France eventually, moved to white headlamps due to standardization efforts and advancements in lighting technology.
First Recorded Use
While the concept of using yellow light for fog penetration predates this, the term 'Selective Yellow' became more formalized with regulations in the mid-20th century, particularly in France.
Cultural Associations
Selective Yellow is strongly associated with French automotive culture, particularly classic cars from brands like Citroën, Peugeot, and Renault. It evokes a sense of nostalgia for a bygone era of motoring. Beyond headlamps, this specific shade of yellow is sometimes used in design or art to reference this historical automotive aesthetic.
Code Snippets
/* Background */
.element {
background-color: #FFBA00;
}
/* Text */
.element {
color: #FFBA00;
}
/* Border */
.element {
border: 1px solid #FFBA00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFBA00,
#0045FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFBA00,
#0045FF
);
}
// SCSS variable
$selective-yellow: #FFBA00;
// With RGB channels (useful for rgba() usage)
$selective-yellow-r: 255;
$selective-yellow-g: 186;
$selective-yellow-b: 0;
// Usage
.element {
background-color: $selective-yellow;
color: rgba($selective-yellow-r, $selective-yellow-g, $selective-yellow-b, 0.8);
}