School Bus Yellow

HEX: #FFD800 | Modern Palette

On White
1.39:1
FAIL
On Black
15.07:1
PASS

Color Specifications

HEX
#FFD800
RGB
255, 216, 0
HSL
50°, 100% ,50%
CMYK
0, 15, 100, 0

About School Bus Yellow

School Bus Yellow (#FFD800) is a color with RGB(255, 216, 0) and HSL(50.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 #0027FF, which creates strong contrast. Its triadic palette includes #00FFD8 and #D800FF. The name comes from School Bus Yellow (English).

  • HEX: #FFD800
  • RGB: 255, 216, 0
  • HSL: 50.8°, 100%, 50%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #0027FF
  • Triadic colors: #00FFD8, #D800FF
  • The name comes from School Bus 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 #FFD800 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #E4E400
Protanopia #DDDD05
Tritanopia #FFCBCB
Achromatopsia #DADADA

Frequently Asked Questions

School Bus Yellow (#FFD800) is a color with RGB(255, 216, 0) and HSL(50.8°, 100%, 50%).

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

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

#FFD800 is commonly associated with Energetic, Bold.

The name School Bus Yellow is linked to School Bus Yellow from English, meaning A specific shade of yellow-orange used for school buses in the United States and Canada..

Name, History & Etymology

Origin Word School Bus Yellow
Meaning A specific shade of yellow-orange used for school buses in the United States and Canada.
Language English
First Recorded Use Early 20th Century

History

The color 'School Bus Yellow' was officially adopted in 1939 at a conference in New York, organized by Dr. Frank W. Cyr, a professor at Teachers College, Columbia University. The conference brought together educators, transportation officials, and paint experts to standardize school bus construction and safety. The specific shade of yellow-orange was chosen because it is more easily noticed in the peripheral vision than other colors, and it is also highly visible in the dim light of early morning and late afternoon. The color was originally called 'National School Bus Chrome' but is now more commonly known as 'School Bus Yellow' or 'School Bus Glossy Yellow'.

First Recorded Use

1939

Cultural Associations

School Bus Yellow is an iconic color in North America, immediately recognizable and strongly associated with childhood, education, and the daily commute to school. It evokes a sense of safety and regulated transport. The color's high visibility is a key safety feature, making school buses stand out on roads.

Similar Named Colors

Gold #FFD700 ΔE 0.32
Cyber Yellow #FFD300 ΔE 1.62
Golden Yellow #FFDF00 ΔE 2.20
Yellow (Pantone) #FEDF00 ΔE 2.37

Code Snippets

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

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

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

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

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

// SCSS variable
$school-bus-yellow: #FFD800;

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

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