Safety Yellow
HEX: #EED202 | Modern Palette
Color Specifications
#EED202
238, 210, 2
52°, 99% ,93%
0, 11.76, 99.16, 6.67
About Safety Yellow
Safety Yellow (#EED202) is a color with RGB(238, 210, 2) and HSL(52.88°, 99.16%, 93.33%). 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 #021EEE, which creates strong contrast. Its triadic palette includes #02EED2 and #D202EE. The name comes from Safety Yellow (English).
- HEX: #EED202
- RGB: 238, 210, 2
- HSL: 52.88°, 99.16%, 93.33%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #021EEE
- Triadic colors: #02EED2, #D202EE
- The name comes from Safety Yellow (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 #EED202 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The use of yellow as a warning color has ancient roots, often associated with fire, danger, or disease. However, the modern concept of 'Safety Yellow' as a standardized, highly visible color for industrial and road safety emerged in the 20th century. Research into color psychology and visibility in various conditions (daylight, low light, different backgrounds) led to the selection of specific bright yellows. The American National Standards Institute (ANSI) and other international bodies played a crucial role in standardizing these colors. Its high luminosity and contrast against many natural backgrounds make it exceptionally effective for drawing attention, especially in peripheral vision. It is widely used on road signs, construction equipment, personal protective equipment (PPE), and hazardous areas.
First Recorded Use
The widespread adoption of 'Safety Yellow' as a standardized color for warning and high-visibility applications began in the mid-20th century, particularly after World War II with increased industrialization and focus on worker safety. While yellow has been associated with caution for much longer, the specific term 'Safety Yellow' and its standardized use became prominent around this time.
Cultural Associations
In Western cultures, 'Safety Yellow' is almost universally recognized as a warning or caution color. It is deeply ingrained in public consciousness through its pervasive use in traffic signs (e.g., school zones, pedestrian crossings), construction sites, and emergency services. Its association with 'caution' is so strong that it often evokes an immediate, subconscious response to be alert. It is less common in some other cultures to have such a specific, standardized 'safety' color, though yellow itself often carries meanings of caution or divinity.
Code Snippets
/* Background */
.element {
background-color: #EED202;
}
/* Text */
.element {
color: #EED202;
}
/* Border */
.element {
border: 1px solid #EED202;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EED202,
#DDE1FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EED202,
#DDE1FF
);
}
// SCSS variable
$safety-yellow: #EED202;
// With RGB channels (useful for rgba() usage)
$safety-yellow-r: 238;
$safety-yellow-g: 210;
$safety-yellow-b: 2;
// Usage
.element {
background-color: $safety-yellow;
color: rgba($safety-yellow-r, $safety-yellow-g, $safety-yellow-b, 0.8);
}