Flame
HEX: #E25822 | Modern Palette
Color Specifications
#E25822
226, 88, 34
16°, 76% ,51%
0, 61, 85, 11
About Flame
Flame (#E25822) is a color with RGB(226, 88, 34) and HSL(16.9°, 76.8%, 51%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #22ACE2, which creates strong contrast. Its triadic palette includes #22E258 and #5822E2. The name comes from *bʰleg- (Proto-Indo-European).
- HEX: #E25822
- RGB: 226, 88, 34
- HSL: 16.9°, 76.8%, 51%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #22ACE2
- Triadic colors: #22E258, #5822E2
- The name comes from *bʰleg- (Proto-Indo-European).
Live Components
Color Palettes
Flame #E25822 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
Flame #E25822 pairs with #22ACE2 as its complementary color, and #22E258 and #5822E2 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 word "flame" traces its roots back to the Proto-Indo-European root '*bʰleg-', meaning 'to shine, gleam, burn'. This root evolved into Proto-Germanic '*blegmaz' and then into Old English 'flegma' or 'flæmme'. It was also influenced by Old French 'flamme', which itself came from Latin 'flamma'. The Latin 'flamma' also derives from the same PIE root. The word has consistently referred to the visible, gaseous part of a fire throughout its history in English, often carrying connotations of passion, destruction, or brilliance.
First Recorded Use
Before 12th century
Cultural Associations
Flames hold significant cultural symbolism across many civilizations. In ancient Greece and Rome, fire was associated with deities like Hephaestus/Vulcan (god of fire and smithing) and Hestia/Vesta (goddess of the hearth and home). In many spiritual traditions, a flame can represent purification, enlightenment, or the divine presence (e.g., eternal flames, sacred lamps). Metaphorically, 'flame' is widely used to describe intense emotions like love, anger, or passion, as well as a sudden burst of activity or brilliance. The Olympic flame is a modern example of its symbolic power, representing continuity and the spirit of the games.
Code Snippets
/* Background */
.element {
background-color: #E25822;
}
/* Text */
.element {
color: #E25822;
}
/* Border */
.element {
border: 1px solid #E25822;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E25822,
#22ACE2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E25822,
#22ACE2
);
}
// SCSS variable
$flame: #E25822;
// With RGB channels (useful for rgba() usage)
$flame-r: 226;
$flame-g: 88;
$flame-b: 34;
// Usage
.element {
background-color: $flame;
color: rgba($flame-r, $flame-g, $flame-b, 0.8);
}