Safety Orange

HEX: #FF6700 | Modern Palette

On White
2.92:1
FAIL
On Black
7.19:1
PASS

Color Specifications

HEX
#FF6700
RGB
255, 103, 0
HSL
24°, 100% ,50%
CMYK
0, 60, 100, 0

About Safety Orange

Safety Orange (#FF6700) is a color with RGB(255, 103, 0) and HSL(24.2°, 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 #0098FF, which creates strong contrast. Its triadic palette includes #00FF67 and #6700FF. The name comes from Safety Orange (English).

  • HEX: #FF6700
  • RGB: 255, 103, 0
  • HSL: 24.2°, 100%, 50%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #0098FF
  • Triadic colors: #00FF67, #6700FF
  • 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 #FF6700 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A7A700
Protanopia #84840D
Tritanopia #FF6161
Achromatopsia #979797

Frequently Asked Questions

Safety Orange (#FF6700) is a color with RGB(255, 103, 0) and HSL(24.2°, 100%, 50%).

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

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

#FF6700 is commonly associated with Energetic, Bold.

The name Safety Orange is linked to Safety Orange from English, meaning A specific shade of orange used for safety purposes..

Name, History & Etymology

Origin Word Safety Orange
Meaning A specific shade of orange used for safety purposes.
Language English
First Recorded Use Mid-20th Century

History

The use of bright, highly visible colors for warning and safety has ancient roots, but the standardization and specific naming of 'Safety Orange' is a modern phenomenon. After WWII, there was a significant increase in industrialization and road infrastructure, leading to a greater need for standardized safety measures. Research into human perception and color visibility in various conditions (daylight, dusk, fog) led to the selection of specific hues for optimal recognition. Orange, particularly this vibrant shade, was found to be highly effective because it contrasts well with most natural environments (green foliage, blue sky, grey concrete) and is distinct from red (often associated with immediate danger or stop) and yellow (often associated with caution). Its adoption was gradual across various sectors, including construction, road work, hunting, and aviation.

First Recorded Use

The exact first use is difficult to pinpoint to a single event or date, but its widespread adoption for safety applications began in the mid-20th century, particularly after World War II, as industrial and road safety became more formalized. The color was chosen for its high visibility against most natural backgrounds.

Cultural Associations

Safety Orange is universally recognized as a warning or indicator of caution and visibility. It is strongly associated with construction zones, road workers, hunting gear (especially in areas where hunters need to be visible to each other but not to game), life rafts, and various emergency equipment. Its presence immediately signals a need for awareness or indicates the presence of personnel or objects that need to be seen. In some contexts, it can also be associated with rebellion or counter-culture, particularly when used in fashion or art to subvert its utilitarian purpose, though its primary cultural association remains safety and visibility.

Similar Named Colors

Vivid Orange #FF5F00 ΔE 2.03
Pumpkin #FF7518 ΔE 3.01
Vivid Tangelo #F07427 ΔE 3.53
Orange (Pantone) #FF5800 ΔE 3.68

Code Snippets

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

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

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

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

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

// SCSS variable
$safety-orange: #FF6700;

// With RGB channels (useful for rgba() usage)
$safety-orange-r: 255;
$safety-orange-g: 103;
$safety-orange-b: 0;

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