Safety Yellow

HEX: #EED202 | Modern Palette

On White
1.52:1
FAIL
On Black
13.85:1
PASS

Color Specifications

HEX
#EED202
RGB
238, 210, 2
HSL
52°, 99% ,93%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #DBDB00
Protanopia #D5D505
Tritanopia #F8C6C6
Achromatopsia #D2D2D2

Frequently Asked Questions

Safety Yellow (#EED202) is a color with RGB(238, 210, 2) and HSL(52.88°, 99.16%, 93.33%).

#EED202 pairs strongly with #021EEE as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#EED202 is commonly associated with Playful.

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

Name, History & Etymology

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

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.

Similar Named Colors

Citrine #E4D00A ΔE 2.11
Yellow (Munsell) #EFCC00 ΔE 2.12
Sandstorm #ECD540 ΔE 2.96
School Bus Yellow #FFD800 ΔE 3.17

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