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
Safety Orange #FF7800 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
Safety Orange #FF7800 pairs with #0087FF as its complementary color, and #00FF78 and #7800FF 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 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);
}