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