Safety Orange

HEX: #FF7800 | Modern Palette

On White
2.65:1
FAIL
On Black
7.94:1
PASS

Color Specifications

HEX
#FF7800
RGB
255, 120, 0
HSL
28°, 100% ,100%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #AEAE00
Protanopia #8F8F0C
Tritanopia #FF7171
Achromatopsia #9F9F9F

Frequently Asked Questions

Safety Orange (#FF7800) is a color with RGB(255, 120, 0) and HSL(28.24°, 100%, 100%).

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

#FF7800 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FF7800 is commonly associated with Playful.

The name Safety Orange is linked to Safety Orange from English, meaning A highly conspicuous orange color used for safety purposes..

Name, History & Etymology

Origin Word Safety Orange
Meaning A highly conspicuous orange color used for safety purposes.
Language English
First Recorded Use Mid-20th Century

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).

Similar Named Colors

Amber (SAE/ECE) #FF7E00 ΔE 1.83
Orange (color Wheel) #FF7F00 ΔE 2.15
Pumpkin #FF7518 ΔE 2.34
Princeton Orange #F58025 ΔE 2.58

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