Amber (SAE/ECE)
HEX: #FF7E00 | Modern Palette
Color Specifications
#FF7E00
255, 126, 0
29°, 100% ,100%
0, 50.59, 100, 0
About Amber (SAE/ECE)
Amber (SAE/ECE) (#FF7E00) is a color with RGB(255, 126, 0) and HSL(29.65°, 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 #0081FF, which creates strong contrast. Its triadic palette includes #00FF7E and #7E00FF. The name comes from Amber (English).
- HEX: #FF7E00
- RGB: 255, 126, 0
- HSL: 29.65°, 100%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #0081FF
- Triadic colors: #00FF7E, #7E00FF
- The name comes from Amber (English).
Live Components
Color Palettes
Amber (SAE/ECE) #FF7E00 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Amber (SAE/ECE) #FF7E00 pairs with #0081FF as its complementary color, and #00FF7E and #7E00FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The specific 'Amber (SAE/ECE)' color standard refers to the color used for automotive signal lighting, particularly turn signals and side markers. This standardization became crucial with the rise of the automotive industry to ensure consistent and universally recognizable signals. SAE (Society of Automotive Engineers) and ECE (Economic Commission for Europe) are two major bodies that set these standards. The color is a specific shade of yellow-orange, designed to be distinct from red (brakes) and white (headlights/reverse) and highly visible in various conditions.
First Recorded Use
The word 'amber' entered English via Old French 'ambre' from Medieval Latin 'ambra', which itself came from Arabic 'anbar'. Initially, 'anbar' referred to ambergris (a waxy substance from sperm whales), but the term later shifted to refer to the fossilized resin due to their similar appearance and use in perfumes and ornaments.
Cultural Associations
In automotive contexts, amber is universally recognized as a signal for caution, turning, or hazard. Its use is legally mandated in many countries for specific lighting functions. Beyond automotive, the color amber is often associated with warmth, autumn, and natural elements due to its resemblance to the gemstone amber. It can also evoke feelings of coziness or vintage aesthetics.
Code Snippets
/* Background */
.element {
background-color: #FF7E00;
}
/* Text */
.element {
color: #FF7E00;
}
/* Border */
.element {
border: 1px solid #FF7E00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF7E00,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF7E00,
#FFFFFF
);
}
// SCSS variable
$amber-(sae/ece): #FF7E00;
// With RGB channels (useful for rgba() usage)
$amber-(sae/ece)-r: 255;
$amber-(sae/ece)-g: 126;
$amber-(sae/ece)-b: 0;
// Usage
.element {
background-color: $amber-(sae/ece);
color: rgba($amber-(sae/ece)-r, $amber-(sae/ece)-g, $amber-(sae/ece)-b, 0.8);
}