Safety Orange
HEX: #FF6700 | Modern Palette
Color Specifications
#FF6700
255, 103, 0
24°, 100% ,50%
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
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 #FF6700 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}