Selective Yellow

HEX: #FFBA00 | Modern Palette

On White
1.71:1
FAIL
On Black
12.28:1
PASS

Color Specifications

HEX
#FFBA00
RGB
255, 186, 0
HSL
43°, 100% ,50%
CMYK
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

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

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #D1D100
Protanopia #C3C307
Tritanopia #FFAFAF
Achromatopsia #C6C6C6

Frequently Asked Questions

Selective Yellow (#FFBA00) is a color with RGB(255, 186, 0) and HSL(43.8°, 100%, 50%).

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

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

#FFBA00 is commonly associated with Energetic, Bold.

The name Selective Yellow is linked to Selective Yellow from English, meaning A specific shade of yellow, often with an orange tint, historically used in vehicle headlamps to improve visibility in adverse weather conditions..

Name, History & Etymology

Origin Word Selective Yellow
Meaning A specific shade of yellow, often with an orange tint, historically used in vehicle headlamps to improve visibility in adverse weather conditions.
Language English
First Recorded Use Mid-20th Century

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.

Similar Named Colors

Amber #FFBF00 ΔE 1.76
UCLA Gold #FFB300 ΔE 2.49
Golden Poppy #FCC200 ΔE 3.37
Mikado Yellow #FFC40C ΔE 3.39

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