Safety Orange
HEX: #FF7800 | Modern Palette
Color Specifications
#FF7800
255, 120, 0
28°, 100% ,100%
0, 52.94, 100, 0
About Safety Orange
Safety Orange (#FF7800) is a color with RGB(255, 120, 0) and HSL(28.24°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #0087FF, which creates strong contrast. Its triadic palette includes #00FF78 and #7800FF. The name comes from Safety Orange (English).
- HEX: #FF7800
- RGB: 255, 120, 0
- HSL: 28.24°, 100%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #0087FF
- Triadic colors: #00FF78, #7800FF
- The name comes from Safety Orange (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 #FF7800 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The use of bright colors for visibility has ancient roots, but the specific application and standardization of a particular shade of orange for safety is a more modern development. Before 'Safety Orange,' various bright reds and oranges were used haphazardly. The need for a universally recognizable and highly visible color became apparent with the rise of industrial machinery, faster vehicles, and more complex construction sites. Research into human vision and color perception in various lighting conditions (daylight, dusk, fog) led to the selection of a specific hue of orange. This color was found to be highly visible against most natural backgrounds and to stimulate the human eye's cones effectively, making it stand out. Its adoption was driven by organizations like the American National Standards Institute (ANSI) and various government safety agencies, which began to specify particular color standards for safety equipment, signage, and clothing. The color #ff7800 is a common digital representation of this concept, though physical standards often refer to specific Munsell or Pantone values.
First Recorded Use
While the exact first documented use of the term 'Safety Orange' is difficult to pinpoint to a single date, its widespread adoption and standardization for safety applications began in the mid-20th century, particularly after World War II, as industrial safety and road safety became more formalized.
Cultural Associations
Safety Orange is deeply ingrained in modern culture as a universal symbol of caution, warning, and high visibility. It is ubiquitous in construction zones, on traffic cones, safety vests, hunting apparel, life rafts, and various industrial equipment. Its presence immediately signals a need for awareness or indicates a safety measure. Culturally, it evokes a sense of urgency and protection. It is also used in sports (e.g., hunting vests) to ensure participants are visible to each other while remaining somewhat camouflaged to animals (which often have dichromatic vision and may not perceive orange as distinctly as humans).
Code Snippets
/* Background */
.element {
background-color: #FF7800;
}
/* Text */
.element {
color: #FF7800;
}
/* Border */
.element {
border: 1px solid #FF7800;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF7800,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF7800,
#FFFFFF
);
}
// SCSS variable
$safety-orange: #FF7800;
// With RGB channels (useful for rgba() usage)
$safety-orange-r: 255;
$safety-orange-g: 120;
$safety-orange-b: 0;
// Usage
.element {
background-color: $safety-orange;
color: rgba($safety-orange-r, $safety-orange-g, $safety-orange-b, 0.8);
}